Skip to content

Commit

Permalink
don't fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Sep 11, 2023
1 parent 806cfc1 commit 6607b70
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/stuff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
check-stuff:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -22,14 +23,17 @@ jobs:
target/
key: ${{ runner.os }}-cargo-build-stable-${{ hashFiles('**/Cargo.toml') }}
- uses: dtolnay/rust-toolchain@stable

- 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 with dynamic_linking
run: cargo build --features dynamic_linking
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-C debuginfo=0 -D warnings"

- name: Check hot reloading
run: |
cargo build --example "hot_asset_reloading,bevy_ci_testing"
Expand Down

0 comments on commit 6607b70

Please sign in to comment.