Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 14 additions & 2 deletions .github/workflows/nightly-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,20 @@ jobs:
with:
toolchain: nightly

- name: Run Noir tests
run: nargo test
- name: Setup Node.js and install dependencies
uses: actions/setup-node@v4
with:
node-version: 22.15.0
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

- name: Install dependencies
run: |
yarn --immutable

- name: Run all tests (including oracle tests)
working-directory: ./scripts
run: ./run.sh

- name: Alert on dead links
uses: JasonEtco/create-an-issue@v2
Expand Down
31 changes: 27 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,20 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}

- name: Run Noir tests
run: nargo test

- name: Setup Node.js and install dependencies
uses: actions/setup-node@v4
with:
node-version: 22.15.0
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

- name: Install dependencies
run: |
yarn --immutable

- name: Run all tests (including oracle tests)
working-directory: ./scripts
run: ./run.sh
rust-equivalence-tests:
name: Test for equivalence against Rust impl
runs-on: ubuntu-latest
Expand All @@ -72,9 +83,21 @@ jobs:
with:
key: x86_64-unknown-linux-gnu
cache-on-failure: true

- name: Setup Node.js and install dependencies
uses: actions/setup-node@v4
with:
node-version: 22.15.0
cache: 'yarn'
cache-dependency-path: 'yarn.lock'

- name: Install dependencies
run: |
yarn --immutable

- name: Export and Test Noir Functions
run: ./scripts/fuzz-test.sh
working-directory: ./scripts
run: ./run.sh

format:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

### Features

* Initial release ([#1](https://github.com/noir-lang/poseidon/issues/1)) ([e20ea4a](https://github.com/noir-lang/poseidon/commit/e20ea4a7ccd8634a281c09244890b086182611b9))
* Initial release ([#1](https://github.com/noir-lang/poseidon/issues/1)) ([e20ea4a](https://github.com/noir-lang/poseidon/commit/e20ea4a7ccd8634a281c09244890b086182611b9))
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ The Changelog is automatically managed by Release Please and informed by the Con

## Response time

The team will respond to issues and PRs within 1 week from submission.
The team will respond to issues and PRs within 1 week from submission.
Loading