From 8c95c3eb0604b90203db0341cba0abe0696d82aa Mon Sep 17 00:00:00 2001 From: baerwang Date: Wed, 8 Nov 2023 14:49:43 +0800 Subject: [PATCH] chore: clean cache --- .github/workflows/pika.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/pika.yml b/.github/workflows/pika.yml index c36645cb17..30e2ea8ad4 100644 --- a/.github/workflows/pika.yml +++ b/.github/workflows/pika.yml @@ -120,17 +120,7 @@ jobs: source /opt/rh/devtoolset-10/enable cmake -B build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DUSE_PIKA_TOOLS=ON -DCMAKE_CXX_FLAGS_DEBUG=-fsanitize=address - - name: Cache Build - uses: actions/cache@v3 - id: cache-centos - with: - key: ${{ runner.os }}-build-centos-${{ hashFiles('**/CMakeLists.txt') }} - path: | - ${{ github.workspace }}/buildtrees - ${{ github.workspace }}/deps - - name: Build - if: ${{ steps.cache-centos.outputs.cache-hit != 'true' }} run: | source /opt/rh/devtoolset-10/enable cmake --build build --config ${{ env.BUILD_TYPE }} @@ -178,17 +168,7 @@ jobs: export CC=/usr/local/opt/gcc@10/bin/gcc-10 cmake -B build -DCMAKE_C_COMPILER=/usr/local/opt/gcc@10/bin/gcc-10 -DUSE_PIKA_TOOLS=ON -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DCMAKE_CXX_FLAGS_DEBUG=-fsanitize=address - - name: Cache Build - uses: actions/cache@v3 - id: cache-macos - with: - key: ${{ runner.os }}-build-macos-${{ hashFiles('**/CMakeLists.txt') }} - path: | - ${{ github.workspace }}/buildtrees - ${{ github.workspace }}/deps - - name: Build - if: ${{ steps.cache-macos.outputs.cache-hit != 'true' }} run: | cmake --build build --config ${{ env.BUILD_TYPE }}