Merge branch 'trunk' into new_num_layer

This commit is contained in:
Richard Feldman 2020-12-22 22:28:08 -05:00 committed by GitHub
commit 80454424bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 5 deletions

View file

@ -2,9 +2,6 @@ on: [pull_request]
name: CI
env:
RUSTC_WRAPPER: "./ci/sccache"
jobs:
test:
name: fmt, clippy, test, test --release
@ -31,6 +28,24 @@ jobs:
- run: rustup component add rustfmt
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache compiled valgrind
uses: actions/cache@v1
with:
path: ~/valgrind-3.6.1/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/cargo@v1
name: rustfmt version
with:
@ -69,5 +84,3 @@ jobs:
with:
command: test
args: --release
- run: ./ci/sccache --show-stats

Binary file not shown.