From 509dd30fd92e87c1bdd470b16c22d1049f2d79f6 Mon Sep 17 00:00:00 2001 From: Tianhao Geng Date: Tue, 11 Oct 2022 18:53:38 +0000 Subject: [PATCH] Remove caching from build workflow --- .github/cache_bust | 4 ---- .github/workflows/ci.yml | 9 --------- 2 files changed, 13 deletions(-) delete mode 100644 .github/cache_bust diff --git a/.github/cache_bust b/.github/cache_bust deleted file mode 100644 index 70cfb582..00000000 --- a/.github/cache_bust +++ /dev/null @@ -1,4 +0,0 @@ -# this file provides a manual way to clear out github actions caches. any change -# to this file will cause all github action caches to miss. increment the number -# below by 1 if you need to clear the caches. -1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83c1c229..ce78a754 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,15 +25,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/cache@v3 - with: - path: | - .cargo - target - # you can edit the .github/cache_bust file if you need to clear the cache - key: ${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-build-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-build- - run: rustup update stable - run: make build