test-flaky #67
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
| # Daily CI job to run flaky tests that are excluded from regular CI via nextest default-filter | |
| name: test-flaky | |
| permissions: {} | |
| on: | |
| schedule: | |
| - cron: "0 1 * * *" # Run daily at 1 AM UTC (offset from test-isolate) | |
| workflow_dispatch: # Needed so we can run it manually | |
| concurrency: | |
| group: tests-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: full | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| test: | |
| name: flaky tests | |
| runs-on: depot-ubuntu-latest-16 | |
| timeout-minutes: 60 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # master | |
| with: | |
| toolchain: stable | |
| - uses: rui314/setup-mold@725a8794d15fc7563f59595bd9556495c0564878 # v1 | |
| - uses: taiki-e/install-action@a2352fc6ce487f030a3aa709482d57823eadfb37 # v2.75.16 | |
| with: | |
| tool: nextest | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: "3.14" | |
| - name: Install Vyper | |
| # Also update vyper version in .devcontainer/Dockerfile.dev | |
| run: pip --version && pip install vyper==0.4.3 | |
| - uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9 | |
| - uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| - name: Test flaky tests | |
| env: | |
| SVM_TARGET_PLATFORM: linux-amd64 | |
| ETHERSCAN_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
| ARBITRUM_RPC: ${{ secrets.ARBITRUM_RPC }} | |
| ETH_SEPOLIA_RPC: ${{ secrets.ETH_SEPOLIA_RPC }} | |
| run: cargo nextest run --profile flaky --no-fail-fast | |
| # If any of the jobs fail, this will create a normal-priority issue to signal so. | |
| issue: | |
| name: Open an issue | |
| runs-on: ubuntu-latest | |
| needs: [test] | |
| if: failure() | |
| permissions: | |
| contents: read | |
| issues: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: JasonEtco/create-an-issue@1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5 # v2.9.2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| WORKFLOW_URL: | | |
| ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| with: | |
| update_existing: true | |
| filename: .github/FLAKY_TEST_FAILURE_TEMPLATE.md |