Skip to content

Soak

Soak #51

Workflow file for this run

name: Soak
on:
schedule:
- cron: "17 8 * * *"
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
max-subscriptions-soak:
name: MAX_SUBSCRIPTIONS soak
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry
uses: actions/cache@v4.2.2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-soak-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Run 100k subscription soak test
run: cargo test --release -p subscription_vault --test soak_100k soak_100k -- --ignored --nocapture