Run long-running fuzzing tests #61
This file contains hidden or 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
| 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 |