From 81848699245b611dd22de917dace29785bfa26d2 Mon Sep 17 00:00:00 2001 From: zonyitoo Date: Sun, 9 Aug 2020 23:07:58 +0800 Subject: [PATCH] Disable cache for macos build temporary rust-lang/cargo#8603 --- .github/workflows/build-and-test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 9caefd12d0e2..ec92cf250cd8 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -50,13 +50,13 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + # - uses: actions/cache@v2 + # with: + # path: | + # ~/.cargo/registry + # ~/.cargo/git + # target + # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Build run: cargo build --features "aes-pmac-siv local-redir" --verbose - name: Run tests