Skip to content

Commit 217de09

Browse files
authoredJan 8, 2024
chore: noir sync (AztecProtocol#3884)
Needed a bit of a graft here: - Looked at current commit on noir/.gitrepo, it pointed to 'just nargo compile' commit, fixed that to actual commit in aztec-packages branch of noir - Fixed parent commit - did git subrepo noir pull and fixed merge conflicts per instructions - this PR resulted
1 parent fa1c456 commit 217de09

File tree

454 files changed

+6079
-1985
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+6079
-1985
lines changed
 

‎noir/.github/workflows/publish-acvm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
env:
4646
CARGO_REGISTRY_TOKEN: ${{ secrets.ACVM_CRATES_IO_TOKEN }}
4747

48-
- name: Publish barretenberg_blackbox_solver
48+
- name: Publish bn254_blackbox_solver
4949
run: |
50-
cargo publish --package barretenberg_blackbox_solver
50+
cargo publish --package bn254_blackbox_solver
5151
env:
5252
CARGO_REGISTRY_TOKEN: ${{ secrets.ACVM_CRATES_IO_TOKEN }}
5353

‎noir/.github/workflows/publish-docs.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
name: Publish documentation
22

33
on:
4-
workflow_dispatch:
5-
inputs:
6-
noir-ref:
7-
description: The noir reference to checkout
8-
required: false
9-
default: 'master'
4+
push:
5+
branches:
6+
- master
7+
paths: [docs/**]
108

119
jobs:
1210
publish-docs:
@@ -16,9 +14,6 @@ jobs:
1614
steps:
1715
- name: Checkout release branch
1816
uses: actions/checkout@v4
19-
with:
20-
ref: ${{ inputs.noir-ref }}
21-
token: ${{ secrets.NOIR_RELEASES_TOKEN }}
2217

2318
- name: Setup Node.js
2419
uses: actions/setup-node@v2

0 commit comments

Comments
 (0)