2020-08-24 18:16:52 +00:00
name : CI
2020-05-29 03:48:18 +00:00
on :
pull_request :
2021-02-19 21:15:29 +00:00
push :
2021-06-22 07:59:37 +00:00
branches-ignore :
- 'dependabot/**'
- staging-squash-merge.tmp
2020-05-29 03:48:18 +00:00
env :
CARGO_TERM_COLOR : always
jobs :
build :
2020-08-26 18:57:35 +00:00
strategy :
matrix :
2022-01-02 20:18:53 +00:00
toolchain : [ stable, nightly]
2021-01-27 01:11:38 +00:00
os : [ windows-latest, ubuntu-latest, macos-latest]
2020-09-03 01:10:42 +00:00
exclude :
2021-01-27 01:11:38 +00:00
- os : macos-latest
2020-09-03 01:10:42 +00:00
toolchain : nightly
2021-01-27 01:11:38 +00:00
- os : windows-latest
2020-11-02 20:49:31 +00:00
toolchain : nightly
2020-08-27 19:24:02 +00:00
runs-on : ${{ matrix.os }}
2020-05-29 03:48:18 +00:00
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2021-07-27 02:01:11 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-cargo-build-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.toml') }}
2020-06-08 08:05:56 +00:00
- uses : actions-rs/toolchain@v1
with :
2020-08-26 18:57:35 +00:00
toolchain : ${{ matrix.toolchain }}
2020-06-08 08:05:56 +00:00
override : true
2021-01-27 01:11:38 +00:00
- name : Install alsa and udev
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
if : runner.os == 'linux'
- name : Build & run tests
2022-05-02 19:13:34 +00:00
# See tools/ci/src/main.rs for the commands this runs
run : cargo run -p ci -- test
2020-08-26 18:57:35 +00:00
env :
CARGO_INCREMENTAL : 0
RUSTFLAGS : "-C debuginfo=0 -D warnings"
2021-07-27 02:01:11 +00:00
ci :
runs-on : ubuntu-latest
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2021-07-27 02:01:11 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-cargo-ci-${{ hashFiles('**/Cargo.toml') }}
- uses : actions-rs/toolchain@v1
with :
toolchain : stable
components : rustfmt, clippy
override : true
- name : Install alsa and udev
2021-12-09 20:14:00 +00:00
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
2021-07-27 02:01:11 +00:00
- name : CI job
# See tools/ci/src/main.rs for the commands this runs
2022-05-02 19:13:34 +00:00
run : cargo run -p ci -- lints
2021-07-27 02:01:11 +00:00
2022-03-25 00:26:07 +00:00
miri :
runs-on : ubuntu-latest
2022-05-14 02:01:38 +00:00
timeout-minutes : 60
2022-03-25 00:26:07 +00:00
steps :
- uses : actions/checkout@v3
2022-06-11 08:56:26 +00:00
# TODO: re-enable cache once nightly is unpinned
# - uses: actions/cache@v3
# with:
# path: |
# ~/.cargo/bin/
# ~/.cargo/registry/index/
# ~/.cargo/registry/cache/
# ~/.cargo/git/db/
# target/
# key: ${{ runner.os }}-cargo-miri-${{ hashFiles('**/Cargo.toml') }}
2022-03-25 00:26:07 +00:00
- uses : actions-rs/toolchain@v1
with :
2022-06-11 08:56:26 +00:00
# TODO: check again with nightly once https://github.com/rust-lang/miri/issues/2223 is fixed
toolchain : nightly-2022-06-08
2022-03-25 00:26:07 +00:00
components : miri
override : true
- name : Install alsa and udev
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- name : CI job
run : cargo miri test -p bevy_ecs
env :
# -Zrandomize-layout makes sure we dont rely on the layout of anything that might change
RUSTFLAGS : -Zrandomize-layout
# -Zmiri-disable-isolation is needed because our executor uses `fastrand` which accesses system time.
# -Zmiri-ignore-leaks is needed because running bevy_ecs tests finds a memory leak but its impossible
# to track down because allocids are nondeterministic.
# -Zmiri-tag-raw-pointers is not strictly "necessary" but enables a lot of extra UB checks relating
# to raw pointer aliasing rules that we should be trying to uphold.
MIRIFLAGS : -Zmiri-disable-isolation -Zmiri-ignore-leaks -Zmiri-tag-raw-pointers
2022-05-02 19:13:34 +00:00
check-compiles :
2021-08-26 00:40:56 +00:00
runs-on : ubuntu-latest
needs : ci
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2021-08-26 00:40:56 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
2022-05-02 19:13:34 +00:00
crates/bevy_ecs_compile_fail_tests/target/
key : ${{ runner.os }}-cargo-check-compiles-${{ hashFiles('**/Cargo.toml') }}
2021-08-26 00:40:56 +00:00
- uses : actions-rs/toolchain@v1
with :
toolchain : stable
override : true
- name : Install alsa and udev
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
2022-05-02 19:13:34 +00:00
- name : Check Compile
# See tools/ci/src/main.rs for the commands this runs
run : cargo run -p ci -- compile
2021-08-26 00:40:56 +00:00
2020-10-22 01:15:14 +00:00
build-wasm :
strategy :
matrix :
2022-01-02 20:18:53 +00:00
toolchain : [ stable, nightly]
2021-01-27 01:11:38 +00:00
os : [ ubuntu-latest]
2020-10-22 01:15:14 +00:00
runs-on : ${{ matrix.os }}
2022-05-31 17:30:31 +00:00
needs : build
2020-10-22 01:15:14 +00:00
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2021-07-27 02:01:11 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-cargo-build-wasm-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.toml') }}
2020-10-22 01:15:14 +00:00
- uses : actions-rs/toolchain@v1
with :
toolchain : ${{ matrix.toolchain }}
target : wasm32-unknown-unknown
override : true
2020-09-21 22:47:38 +00:00
- name : Check wasm
uses : actions-rs/cargo@v1
with :
command : check
2020-10-22 01:15:14 +00:00
args : --target wasm32-unknown-unknown --no-default-features --features bevy_winit,x11,hdr,bevy_gltf
2020-09-21 22:47:38 +00:00
2021-02-22 04:50:05 +00:00
markdownlint :
runs-on : ubuntu-latest
2021-07-27 02:01:11 +00:00
needs : check-missing-examples-in-docs
if : always()
2021-02-22 04:50:05 +00:00
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2021-02-22 04:50:05 +00:00
with :
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth : 0
- name : Run Markdown Lint
2021-06-01 01:01:20 +00:00
uses : docker://ghcr.io/github/super-linter:slim-v4
2021-02-22 04:50:05 +00:00
env :
VALIDATE_ALL_CODEBASE : false
VALIDATE_MARKDOWN : true
2021-04-15 19:29:47 +00:00
DEFAULT_BRANCH : main
2021-02-22 04:50:05 +00:00
# Not needed here as only one Linter is used.
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-04-14 21:40:36 +00:00
run-examples :
runs-on : ubuntu-latest
2022-05-31 17:30:31 +00:00
timeout-minutes : 30
2021-04-14 21:40:36 +00:00
steps :
2021-12-17 23:58:09 +00:00
- name : Install Bevy dependencies
2021-04-14 21:40:36 +00:00
run : |
sudo apt-get update;
DEBIAN_FRONTEND=noninteractive sudo apt-get install --no-install-recommends -yq \
2021-12-17 23:58:09 +00:00
libasound2-dev libudev-dev;
- name : install xvfb, llvmpipe and lavapipe
run : |
sudo apt-get update -y -qq
sudo add-apt-repository ppa:oibaf/graphics-drivers -y
sudo apt-get update
sudo apt install -y xvfb libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2021-07-27 02:01:11 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-cargo-run-examples-${{ hashFiles('**/Cargo.toml') }}
2021-04-14 21:40:36 +00:00
- uses : actions-rs/toolchain@v1
with :
toolchain : stable
- name : Build bevy
run : |
2022-05-31 17:30:31 +00:00
cargo build --features "bevy_ci_testing,trace,trace_chrome"
2021-04-14 21:40:36 +00:00
- name : Run examples
run : |
for example in .github/example-run/*.ron; do
example_name=`basename $example .ron`
echo "running $example_name - "`date`
2022-05-31 17:30:31 +00:00
time TRACE_CHROME=trace-$example_name.json CI_TESTING_CONFIG=$example xvfb-run cargo run --example $example_name --features "bevy_ci_testing,trace,trace_chrome"
2021-04-14 21:40:36 +00:00
sleep 10
done
2021-12-17 23:58:09 +00:00
zip traces.zip trace*.json
- name : save traces
2022-03-08 00:46:06 +00:00
uses : actions/upload-artifact@v3
2021-12-17 23:58:09 +00:00
with :
name : example-traces.zip
path : traces.zip
2021-04-22 19:53:44 +00:00
2021-04-27 02:17:12 +00:00
check-doc :
2021-04-22 19:53:44 +00:00
runs-on : ubuntu-latest
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-05-02 19:13:34 +00:00
- uses : actions/cache@v2
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-check-doc-${{ hashFiles('**/Cargo.toml') }}
2021-10-27 00:12:14 +00:00
- uses : actions-rs/toolchain@v1
with :
toolchain : stable
2021-04-22 19:53:44 +00:00
- name : Install alsa and udev
2021-12-09 20:14:00 +00:00
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
2021-04-22 19:53:44 +00:00
if : runner.os == 'linux'
2021-04-27 02:17:12 +00:00
- name : Build and check doc
2022-05-02 19:13:34 +00:00
# See tools/ci/src/main.rs for the commands this runs
run : cargo run -p ci -- doc
env :
CARGO_INCREMENTAL : 0
RUSTFLAGS : "-C debuginfo=0"
# This currently report a lot of false positives
# Enable it again once it's fixed - https://github.com/bevyengine/bevy/issues/1983
# - name: Installs cargo-deadlinks
# run: cargo install --force cargo-deadlinks
# - name: Checks dead links
# run: cargo deadlinks --dir target/doc/bevy
# continue-on-error: true
2021-07-27 02:01:11 +00:00
2021-05-30 18:14:58 +00:00
check-missing-examples-in-docs :
runs-on : ubuntu-latest
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2021-05-30 18:14:58 +00:00
- name : Check that examples are present in both README and Cargo
uses : Weibye/action-internal-link-consistency@1.0.0
with :
source : './examples/'
targets : '[ "./Cargo.toml", "./examples/README.md" ]'
file-types : '[".rs"]'
exclude-folders : '["./examples/ios"]'
exclude-files : '[]'
2022-01-02 20:18:53 +00:00
check-unused-dependencies :
runs-on : ubuntu-latest
steps :
2022-03-08 00:46:07 +00:00
- uses : actions/checkout@v3
2022-03-31 21:22:16 +00:00
- uses : actions/cache@v3
2022-01-02 20:18:53 +00:00
with :
path : |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key : ${{ runner.os }}-cargo-check-unused-dependencies-${{ hashFiles('**/Cargo.toml') }}
- uses : actions-rs/toolchain@v1
with :
toolchain : nightly
override : true
- name : Installs cargo-udeps
run : cargo install --force cargo-udeps
- name : Install alsa and udev
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name : Run cargo udeps
run : cargo udeps