Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Feb 5, 2025
1 parent 854fae7 commit f62e937
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/download-nargo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ runs:
- name: Set nargo on PATH
shell: bash
run: |
nargo_binary="./nargo/nargo"
nargo_binary="${{ github.workspace }}/nargo/nargo"
chmod +x $nargo_binary
echo "$(dirname $nargo_binary)" >> $GITHUB_PATH
5 changes: 2 additions & 3 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,8 @@ jobs:
- project: { repo: AztecProtocol/aztec-packages, path: noir-projects/noir-protocol-circuits/crates/rollup-root, num_runs: 5 }

name: External repo compilation and execution reports - ${{ matrix.project.repo }}/${{ matrix.project.path }}

s:
- name: Download nargo binary
steps:
- name: Download nargo binary
uses: ./.github/actions/download-nargo

- uses: actions/checkout@v4
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test-js-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ jobs:
ref: ${{ matrix.project.ref }}

- name: Download nargo binary
uses: ./.github/actions/download-nargo
uses: ./noir-repo/.github/actions/download-nargo

- name: Remove requirements on compiler version
working-directory: ./test-repo
Expand Down Expand Up @@ -567,14 +567,19 @@ jobs:
timeout-minutes: 30
name: Compile `noir-contracts` zero inliner aggressiveness
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: noir-repo

- name: Checkout
uses: actions/checkout@v4
with:
repository: AztecProtocol/aztec-packages
path: test-repo

- name: Download nargo binary
uses: ./.github/actions/download-nargo
uses: ./noir-repo/.github/actions/download-nargo

- name: Remove requirements on compiler version
working-directory: ./test-repo
Expand Down

0 comments on commit f62e937

Please sign in to comment.