Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,9 @@ jobs:

python-compat-smoke-build:
runs-on: ${{ matrix.os }}
timeout-minutes: 20
# The || guard keeps a future entry that forgets job-timeout at the
# historical 20 minutes instead of GitHub's 360-minute default.
timeout-minutes: ${{ matrix.job-timeout || 20 }}
strategy:
fail-fast: false
matrix:
Expand All @@ -239,16 +241,22 @@ jobs:
artifact-name: python-compat-smoke-ubuntu
build-llvm: true
build-quantum-pecos: true
job-timeout: 20
# 30 minutes: Windows runner preparation (disk cleanup) varies by
# several minutes and the pecos-rslib wheel compile alone takes
# 10-12, so 20 minutes cancelled a healthy build (issue #360).
- os: windows-2022
python-version: "3.10"
artifact-name: python-compat-smoke-windows
build-llvm: false
build-quantum-pecos: false
job-timeout: 30
- os: macOS-latest
python-version: "3.10"
artifact-name: python-compat-smoke-macos
build-llvm: true
build-quantum-pecos: false
job-timeout: 20

steps:
- name: Harden the runner (egress audit)
Expand Down
Loading