-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: rework SubAir trait * refactor: done with AssertLessThanAir * refactor: var_range * refactor: range * chore: delete assert_sorted * wip: is less than * feat: better documentation of `SubAir` concept * refactor: is_less_than * chore: delete `sum` we can easily restore later * chore: docs * refactor: xor * refactor: is_zero * refactor: is_zero * feat: is_equal_array following BEQ air * chore: cleanup, just bigint left * chore: fix derive * chore: doc comments * refactor: finish primitives * wip * feat: IsLtArrayAir (SubAir) * fix tests * subair: call me by my name * fix: put back tests * fix: static verifier must have traces sorted * chore: combine tests to reduce compile time * chore: split out toolchain tests for faster CI * chore: display the diff * fix: toolchain tests weren't using runs-on * todo: turn off CI diff check for ELF
- Loading branch information
1 parent
3aef8eb
commit eeb1745
Showing
200 changed files
with
3,123 additions
and
8,610 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: eDSL Compiler Tests | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
paths: | ||
- "vm/**" | ||
- "toolchain/compiler/**" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
AXIOM_FAST_TEST: "1" | ||
|
||
jobs: | ||
tests: | ||
runs-on: | ||
- runs-on=${{ github.run_id }} | ||
- runner=64cpu-linux-arm64 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-on-failure: true | ||
- uses: taiki-e/install-action@nextest | ||
|
||
- name: Run compiler tests | ||
working-directory: toolchain/compiler | ||
run: | | ||
cargo nextest run --cargo-profile=fast --features parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.