ci(e2e): restore e2e-reliability-t1 PR gate (worker + pin + workflow) #250
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: Build idempotency | |
| on: | |
| pull_request: | |
| paths: | |
| - justfile | |
| - pixi.toml | |
| - .gitmodules | |
| - '**/CMakeLists.txt' | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| idempotent-build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| env: | |
| SKIP_ODYSSEY_BUILD: "true" | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| submodules: recursive | |
| - uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0 | |
| - name: Detect conan profile | |
| run: pixi run conan profile detect | |
| - name: Run idempotency test | |
| env: | |
| SKIP_ODYSSEY_BUILD: "true" | |
| run: bash e2e/test-build-idempotent.sh |