From f6150dbeda316aa1b8bc94c8b2b951382f2d5d5f Mon Sep 17 00:00:00 2001 From: "Ya-wen, Jeng" Date: Mon, 26 Feb 2024 20:41:54 +0800 Subject: [PATCH] chore: remove cache circom --- .github/workflows/build-and-test.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6c1a30a2..a2e01fde 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -28,14 +28,7 @@ jobs: with: path: /Users/runner/.cargo/bin/toml key: ${{ runner.os }}-toml-0.2.3 # version of toml-cli 0.2.3 - - name: Cache circom - uses: actions/cache@v4 - id: circom-macos-restore - with: - path: /Users/runner/.cargo/bin/circom - key: ${{ runner.os }}-circom-2.1.8 # version of circom 2.1.8 - name: Install circom - if: steps.circom-macos-restore.outputs.cache-hit != 'true' run: | sudo wget -O /Users/runner/.cargo/bin/circom https://github.com/iden3/circom/releases/download/v2.1.8/circom-macos-amd64 sudo chmod +x /Users/runner/.cargo/bin/circom @@ -77,14 +70,7 @@ jobs: with: path: /home/runner/.cargo/bin/toml key: ${{ runner.os }}-toml-0.2.3 # version of toml-cli 0.2.3 - - name: Restore circom - uses: actions/cache@v4 - id: circom-linux-restore - with: - path: /usr/bin/circom - key: ${{ runner.os }}-circom-2.1.8 - name: Install circom - if: steps.circom-linux-restore.outputs.cache-hit != 'true' run: | sudo wget -O /usr/bin/circom https://github.com/iden3/circom/releases/download/v2.1.8/circom-linux-amd64 sudo chmod +x /usr/bin/circom