add stress test with 1 thread 10k iterations to ci

This commit is contained in:
Pere Diaz Bou
2025-05-27 10:58:56 +02:00
parent 312bb5205a
commit f2bc84e4ca
2 changed files with 21 additions and 2 deletions

View File

@@ -27,4 +27,23 @@ jobs:
- name: Run ignored long tests
run: cargo test -- --ignored fuzz_long
env:
RUST_BACKTRACE: 1
RUST_BACKTRACE: 1
simple-stress-test:
runs-on: ubuntu-latest
timeout-minutes: 0
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "v1-rust"
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Build
run: cargo build --verbose
- name: Run ignored long tests
run: cargo run -p limbo_stress -- -t 1 -i 10000
env:
RUST_BACKTRACE: 1