ci: cache gcc as a buildcache node instead of committed lockfiles

Committed lockfiles pinned gcc as a host-path external (from spack compiler
find), which is not portable across runners and broke CI. Cache the gcc
compiler itself as a buildcache node instead, so CI pulls it (~1 min) rather
than building it from source (~1 h).

- push the freshly-built gcc node in setup-deps BEFORE spack compiler find
  (which marks it external and excludes it from buildcache push), gated behind
  a push-gcc input used only by the buildcache workflow
- drop the committed-lockfile approach: remove test/ci/locks, the lockfile
  install path in setup-deps, and the lockfile export in the buildcache workflow
- drop the ignored ref input from setup-spack (v3 renamed it to spack_ref)
This commit is contained in:
Dennis Klein
2026-06-08 22:57:39 +02:00
committed by Dennis Klein
parent bb5c0a998c
commit f374e228ff
3 changed files with 17 additions and 76 deletions

View File

@@ -1,21 +0,0 @@
# Committed spack lockfiles
`setup-deps` installs from `<env>-gcc<N>.lock` here when a matching file exists,
skipping concretization so the resolved hashes match the binaries the buildcache
pushed (guaranteed cache hits). When no lockfile is present it falls back to
concretizing from `test/ci/spack-<env>.yaml`.
## Regenerating
Lockfiles pin host externals (glibc, system gcc), so they must be concretized on
the same runner image CI uses (`ubuntu-24.04`) — do **not** generate them on a
local machine.
1. Run the `Spack Buildcache` workflow (push to `dev`/`master` touching the spack
configs, or `workflow_dispatch`). It concretizes fresh (`fresh: 'true'`),
pushes binaries, and uploads each env's `spack.lock` as a `lock-<env>-gcc<N>`
artifact.
2. Download the artifacts and commit them here as `<env>-gcc<N>.lock`.
Regenerate whenever the specs in `test/ci/spack-*.yaml` change or the runner
image is bumped.