Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 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
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,23 @@ jobs:
- name: Run EF tests
run: ./scripts/run_ef_tests.sh

execution-witness-tests:
Comment thread
jsign marked this conversation as resolved.
Comment thread
jsign marked this conversation as resolved.
name: Execution Witness tests
runs-on: ubuntu-latest
timeout-minutes: 30
env:
RUST_LOG: info
RUST_BACKTRACE: 1
EXECUTION_WITNESS_TESTS_URL: https://github.com/jsign/artifacts/releases/download/execution_witness_v0.0.1/execution_witness_tests_409fae8.tar.gz
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run Execution Witness tests
run: cargo run -p ef-test-runner --release -- $EXECUTION_WITNESS_TESTS_URL
Comment thread
jsign marked this conversation as resolved.
Outdated

no-std:
name: no_std (RISC-V)
runs-on: ubuntu-latest
Expand Down
Loading