diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-04-22 08:51:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 08:51:26 +0200 |
commit | f961a11187a514dab4fb4a615544d480ab6b39c2 (patch) | |
tree | 64562edf92a0542e98168f242e4b033cf9af1e8e /.github/workflows/generate_spack_yaml_containerize.sh | |
parent | b00983439fc3f11365664853d80cb7f497fd88a6 (diff) | |
download | spack-f961a11187a514dab4fb4a615544d480ab6b39c2.tar.gz spack-f961a11187a514dab4fb4a615544d480ab6b39c2.tar.bz2 spack-f961a11187a514dab4fb4a615544d480ab6b39c2.tar.xz spack-f961a11187a514dab4fb4a615544d480ab6b39c2.zip |
Update Dockerfiles and images for Spack v0.18.0 (#30216)
This PR updates the list of images we build nightly, deprecating
Ubuntu 16.04 and CentOS 8 and adding Ubuntu 20.04, Ubuntu 22.04
and CentOS Stream. It also removes a lot of duplication by generating
the Dockerfiles during the CI workflow and uploading them as artifacts
for later inspection or reuse.
Diffstat (limited to '.github/workflows/generate_spack_yaml_containerize.sh')
-rwxr-xr-x | .github/workflows/generate_spack_yaml_containerize.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/generate_spack_yaml_containerize.sh b/.github/workflows/generate_spack_yaml_containerize.sh new file mode 100755 index 0000000000..2a180b7dd1 --- /dev/null +++ b/.github/workflows/generate_spack_yaml_containerize.sh @@ -0,0 +1,9 @@ +#!/bin/bash + (echo "spack:" \ +&& echo " specs: []" \ +&& echo " container:" \ +&& echo " format: docker" \ +&& echo " images:" \ +&& echo " os: \"${SPACK_YAML_OS}\"" \ +&& echo " spack:" \ +&& echo " ref: ${GITHUB_REF}") > spack.yaml |