Bump sysinfo from 0.33.1 to 0.35.1 #6442
Workflow file for this run
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: Slow Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: | |
| # YYYYMMDD | |
| - "20[0-9][0-9][0-1][0-9][0-3][0-9]*" | |
| schedule: | |
| - cron: "0 0 * * 1" | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !contains(github.ref, 'main')}} | |
| # Build test binary with `testing` feature, which requires `hotshot_example` config | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_LOG: info,libp2p=off,node=error | |
| NEXTEST_PROFILE: slow | |
| jobs: | |
| slow-tests-sqlite: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: free disk space | |
| uses: jlumbroso/free-disk-space@main | |
| with: | |
| android: true | |
| dotnet: true | |
| haskell: true | |
| large-packages: false | |
| docker-images: false | |
| swap-storage: true | |
| # These tests need the `anvil` binary provided by foundry | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - uses: taiki-e/install-action@just | |
| - uses: taiki-e/install-action@nextest | |
| - uses: rui314/setup-mold@v1 | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| # NOTE: no rust cache, these tests are very slow anyway | |
| - name: Build slow test | |
| run: just nextest --features embedded-db --no-run | |
| - name: Run slow test | |
| run: just nextest --features embedded-db --no-fail-fast | |
| timeout-minutes: 40 | |
| slow-tests-postgres: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: free disk space | |
| uses: jlumbroso/free-disk-space@main | |
| with: | |
| android: true | |
| dotnet: true | |
| haskell: true | |
| large-packages: false | |
| docker-images: false | |
| swap-storage: true | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - uses: taiki-e/install-action@just | |
| - uses: taiki-e/install-action@nextest | |
| - uses: rui314/setup-mold@v1 | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| # NOTE: no rust cache, these tests are very slow anyway | |
| - name: Build slow test | |
| run: just nextest --no-run | |
| - name: Run slow test | |
| run: just nextest --no-fail-fast | |
| timeout-minutes: 40 |