Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add brainfuck_prover cli #213

Merged
merged 10 commits into from
Jan 15, 2025
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
25 changes: 23 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,26 @@ jobs:
- run: cargo install --locked cargo-machete
- run: cargo machete

run-brainfuck-prover-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-01-02
- uses: Swatinem/rust-cache@v2
- run: cargo test --package brainfuck_prover --release --lib

run-brainfuck-prover-unit-tests-parallel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-01-02
- uses: Swatinem/rust-cache@v2
- run: cargo test --package brainfuck_prover --features parallel --release --lib

run-brainfuck-vm-unit-tests:
runs-on: ubuntu-latest
steps:
Expand All @@ -30,7 +50,7 @@ jobs:
with:
toolchain: nightly-2025-01-02
- uses: Swatinem/rust-cache@v2
- run: cargo test --test '*' --lib
- run: cargo test --package brainfuck_vm --release --test '*' --lib

run-brainfuck-vm-integration-tests:
runs-on: ubuntu-latest
Expand All @@ -40,12 +60,13 @@ jobs:
with:
toolchain: nightly-2025-01-02
- uses: Swatinem/rust-cache@v2
- run: cargo test --test '*'
- run: cargo test --package brainfuck_vm --release --test '*'

all-tests:
runs-on: ubuntu-latest
needs:
- machete
- run-brainfuck-prover-unit-tests
- run-brainfuck-vm-unit-tests
- run-brainfuck-vm-integration-tests

Expand Down
Loading
Loading