Skip to content

Commit

Permalink
[1 changes] chore: simplify MSM with constant folding (noir-lang/noir…
Browse files Browse the repository at this point in the history
…#6650)

fix: git dependency trailing slash (noir-lang/noir#6725)
chore: optimise older opcodes in reverse order (noir-lang/noir#6476)
chore: add script to check for critical libraries supporting a given Noir version (noir-lang/noir#6697)
fix!: several format string fixes and improvements (noir-lang/noir#6703)
fix: print ssa blocks without recursion (noir-lang/noir#6715)
chore: redo typo PR by Madmaxs2 (noir-lang/noir#6721)
chore: add a few regression tests for #6674 (noir-lang/noir#6687)
  • Loading branch information
AztecBot committed Dec 7, 2024
1 parent 0577c1a commit aea477a
Show file tree
Hide file tree
Showing 173 changed files with 5,482 additions and 2,363 deletions.
2 changes: 1 addition & 1 deletion .noir-sync-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
68c32b4ffd9b069fe4b119327dbf4018c17ab9d4
6d0f86ba389a5b59b1d7fdcadcbce3e40eecaa48
37 changes: 26 additions & 11 deletions noir/noir-repo/.github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,53 @@ concurrency:
jobs:
clippy:
name: cargo clippy
runs-on: ${{ matrix.runner }}
runs-on: ubuntu-latest
timeout-minutes: 30
env:
RUSTFLAGS: -Dwarnings

strategy:
fail-fast: false
matrix:
include:
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup toolchain
uses: dtolnay/rust-toolchain@1.74.1
with:
targets: ${{ matrix.target }}
targets: x86_64-unknown-linux-gnu
components: clippy, rustfmt

- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.target }}
key: x86_64-unknown-linux-gnu
cache-on-failure: true
save-if: ${{ github.event_name != 'merge_group' }}

- name: Run `cargo clippy`
run: cargo clippy --all-targets --workspace --locked --release

rustfmt:
name: cargo fmt
runs-on: ubuntu-latest
timeout-minutes: 30
env:
RUSTFLAGS: -Dwarnings

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup toolchain
uses: dtolnay/rust-toolchain@1.74.1
with:
targets: x86_64-unknown-linux-gnu
components: clippy, rustfmt

- uses: Swatinem/rust-cache@v2
with:
key: x86_64-unknown-linux-gnu
cache-on-failure: true
save-if: ${{ github.event_name != 'merge_group' }}

- name: Run `cargo fmt`
run: cargo fmt --all --check

Expand Down Expand Up @@ -88,7 +104,6 @@ jobs:
run: |
mkdir dist
cp ./target/release/nargo ./dist/nargo
7z a -ttar -so -an ./dist/* | 7z a -si ./nargo-x86_64-unknown-linux-gnu.tar.gz
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down
94 changes: 0 additions & 94 deletions noir/noir-repo/.github/workflows/gates_report.yml

This file was deleted.

92 changes: 0 additions & 92 deletions noir/noir-repo/.github/workflows/gates_report_brillig.yml

This file was deleted.

This file was deleted.

23 changes: 0 additions & 23 deletions noir/noir-repo/.github/workflows/lockfile.yml

This file was deleted.

2 changes: 1 addition & 1 deletion noir/noir-repo/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Run release-please
id: release
uses: google-github-actions/release-please-action@v4
uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.NOIR_RELEASES_TOKEN }}

Expand Down
Loading

0 comments on commit aea477a

Please sign in to comment.