Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ jobs:
steps:
- name: Clone the repository
uses: actions/checkout@v2
- name: Cache Cargo artifacts
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Prepare target directory
run: |
rm -rf target && mkdir target
ln -s ~/build-cache/aurora-engine/debug/ target/debug
ln -s ~/build-cache/aurora-engine/release/ target/release
- name: Install the toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -34,6 +31,11 @@ jobs:
steps:
- name: Clone the repository
uses: actions/checkout@v2
- name: Prepare target directory
run: |
rm -rf target && mkdir target
ln -s ~/build-cache/aurora-engine-bully/debug/ target/debug
ln -s ~/build-cache/aurora-engine-bully/release/ target/release
- name: Install the toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -45,3 +47,4 @@ jobs:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
RUSTC_WRAPPER: sccache