Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,23 @@ jobs:
- name: Install Foundry
run: |
curl -L https://foundry.paradigm.xyz | bash
source ~/.bashrc
export PATH="$HOME/.foundry/bin:$PATH"
foundryup
echo "$HOME/.foundry/bin" >> $GITHUB_PATH

# -- Step 7: Install nargo for Noir compilation
- name: Install nargo
run: |
curl -L https://raw.githubusercontent.com/noir-lang/noirup/main/install | bash
source ~/.bashrc
export PATH="$HOME/.nargo/bin:$PATH"
noirup
echo "$HOME/.nargo/bin" >> $GITHUB_PATH

# -- Step 8: Install bb for proof generation
- name: Install bb
run: |
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash
source ~/.bashrc
export PATH="$HOME/.bb/bin:$PATH"
bbup
echo "$HOME/.bb/bin" >> $GITHUB_PATH

Expand Down
Loading