Skip to content

Commit

Permalink
chore: updated the workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-londhe committed Sep 23, 2024
1 parent 8d7a3d0 commit e7665e1
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
steps:
- uses: actions/checkout@v3

# Circom installation from https://github.com/erhant/circomkit/blob/main/.github/workflows/tests.yml
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -23,17 +22,8 @@ jobs:
with:
node-version: 18

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable

- name: Download Circom Binary v2.1.8
run: |
wget -qO /home/runner/work/circom https://github.com/iden3/circom/releases/download/v2.1.8/circom-linux-amd64
chmod +x /home/runner/work/circom
sudo mv /home/runner/work/circom /bin/circom
- name: Print Circom version
run: circom --version
- name: Enable Corepack
run: corepack enable

- name: Install Yarn dependencies
working-directory: ./packages/circuits
Expand All @@ -53,6 +43,19 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --yes \
build-essential \
libgmp-dev \
libsodium-dev \
nasm \
nlohmann-json3-dev
- name: Enable Corepack
run: corepack enable

- name: Install Yarn dependencies
working-directory: ./packages/helpers
Expand All @@ -64,4 +67,4 @@ jobs:

- name: Run Tests
working-directory: ./packages/helpers
run: yarn test
run: yarn test

0 comments on commit e7665e1

Please sign in to comment.