From 8e9fc0c9e08435800b6e5d80a6f9659575df8c44 Mon Sep 17 00:00:00 2001 From: SoraSuegami Date: Mon, 14 Oct 2024 12:10:47 +0900 Subject: [PATCH] Fix circom test in github action --- .github/workflows/unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3d784ba0..4b084cf2 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -21,8 +21,8 @@ jobs: override: true components: rustfmt, clippy - - name: Download circom (Linux) - run: git clone https://github.com/iden3/circom.git && cd circom && cargo build --release && cargo install --path circom + - name: Download circom v2.1.8 (Linux) + run: wget https://github.com/iden3/circom/releases/download/v2.1.8/circom-linux-amd64 -O /usr/local/bin/circom && chmod +x /usr/local/bin/circom - name: Print circom version run: circom --version