forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1.36 KB
/
stuff.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Stuff
on:
push:
jobs:
check-stuff:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
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"
(sleep 1; sed -i.bak 's/"a"/"modified"/' examples/asset/processing/assets/a.cool.ron) &; cargo run --example asset_processing --features "filesystem_watcher,bevy_ci_testing"
cat examples/asset/processing/imported_assets/a.cool.ron
env:
CI_TESTING_CONFIG: .github/example-run/alien_cake_addict.ron