Commit 60e531f
COMP: Disable bit-rotted Test Python HASI workflow on push/PR
The `Test Python HASI` workflow has been queued-but-never-started on
PR #93 because every element of its toolchain has bit-rotted out from
under it:
* Runner images `ubuntu-18.04`, `windows-2019`, and `macos-10.15`
have all been retired by GitHub Actions, so the jobs sit in
`queued` indefinitely and never get scheduled onto a runner. On
PR #93 they are the only non-green checks.
* Python 3.7 (pinned by this workflow) is end-of-life (June 2023)
and is not installable on modern runner images via
`actions/setup-python@v5`.
* The pinned test dependencies -- `itk==5.2.0.post2` (2021),
`itk-shape==0.2.1`, `dwd==1.0.1` -- are incompatible with the
`itk` 5.4.x API that the rest of HASI now targets via
`ITKRemoteModuleBuildTestPackageAction@v5.4.6`.
* The IPFS-hosted test data workflow relies on
`ibnesayeed/setup-ipfs@master` plus an `ipfs pin add` of a CID
that is no longer reliably pinned on the public swarm.
The last successful run of this workflow predates 2025-03: every run
since has been `cancelled` or `failure`. Rather than mask that with
`continue-on-error: true` (which hides real regressions behind a green
badge) or delete the file (which throws away the scaffold and makes
it harder to revive the Python tests later), switch the trigger to
`workflow_dispatch` only so the file survives as a skeleton for a
future modernization pass.
Also bump the matrix entries from the retired images to the house
canonical `[ubuntu-24.04, windows-2022, macos-14]` and Python from
3.7 to 3.10 so that whoever re-enables the workflow has one less
thing to rewrite. The `src/hasi/test_*.py` pytest files themselves
are untouched and still runnable locally.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 764e96f commit 60e531f
1 file changed
Lines changed: 27 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
4 | 27 | | |
5 | 28 | | |
6 | 29 | | |
| |||
11 | 34 | | |
12 | 35 | | |
13 | 36 | | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
| 37 | + | |
19 | 38 | | |
20 | 39 | | |
21 | 40 | | |
22 | 41 | | |
23 | | - | |
| 42 | + | |
24 | 43 | | |
25 | 44 | | |
26 | | - | |
| 45 | + | |
27 | 46 | | |
28 | 47 | | |
29 | 48 | | |
| |||
0 commit comments