Skip to content

Run long-running fuzzing tests #57

Run long-running fuzzing tests

Run long-running fuzzing tests #57

Workflow file for this run

name: Run long-running fuzzing tests
on:
workflow_dispatch: {}
schedule:
- cron: "0 15 * * FRI" # weekly test: every Saturday 00:00 JST
env:
CARGO_TERM_COLOR: always
jobs:
rust-x86-fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup environment
run: rustup update
- name: Run fuzz tests
run: cargo test --release test_integration_fuzz_long -- --ignored
rust-x86-fuzz-glucose-rs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup environment
run: rustup update
- name: Run fuzz tests
run: CSPUZ_CORE_DEFAULT_BACKEND=glucose_rs cargo test --release test_integration_fuzz_long --features experimental-backend-glucose-rs -- --ignored