add object storage specs #26
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: E2E & Resilience Tests | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| WALRUS_QUIET: "1" | |
| jobs: | |
| e2e: | |
| name: Run E2E and Resilience Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y clang llvm-dev libclang-dev | |
| - name: Install Rust | |
| run: rustup update stable | |
| - name: Cache dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| target/ | |
| key: ${{ runner.os }}-cargo-e2e-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Run E2E Pipeline | |
| run: cargo test --test end_to_end_pipeline | |
| - name: Run Chaos Rebalance | |
| run: cargo test --test chaos_rebalance_integration | |
| - name: Run Serial Tests | |
| run: cargo test --test serial_tests -- --ignored --test-threads=1 | |
| - name: Run Extreme Stress (ignored) | |
| run: cargo test --test extreme_stress -- --ignored --nocapture |