Skip to content
Open
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
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,38 @@ jobs:
env:
RISC0_DEV_MODE: 1

local-sequencer-integration-tests:
name: Local Sequencer Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./.github/actions/install-risc0

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.94.0"

- name: Cache cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cache/logos-scaffold
target
key: ${{ runner.os }}-cargo-scaffold-test-node-${{ hashFiles('**/Cargo.lock', 'scaffold.toml') }}
restore-keys: |
${{ runner.os }}-cargo-scaffold-test-node-
${{ runner.os }}-cargo-

- name: Local sequencer integration tests
run: cargo test -p integration_tests --features local-sequencer-tests -- --nocapture
env:
RISC0_BUILD_DEBUG: 0
RISC0_DEV_MODE: 1
RUST_TEST_THREADS: 1

build-programs:
name: Build Guest Programs
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
target/
.scaffold/
*.bin
**/*/result
Loading
Loading