Skip to content

Commit

Permalink
cache on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Apr 7, 2022
1 parent d5b2270 commit 93c44ad
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/daily-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
path: |
target
key: ${{ runner.os }}-cargo-check-test-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.os }}-ios-install-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}

- name: Add iOS targets
run: rustup target add aarch64-apple-ios x86_64-apple-ios
Expand All @@ -41,6 +41,16 @@ jobs:
with:
toolchain: stable

- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-windows-run-examples-${{ hashFiles('**/Cargo.toml') }}

- name: Build bevy
run: |
cargo build --features "bevy_ci_testing"
Expand Down

0 comments on commit 93c44ad

Please sign in to comment.