diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2021-09-21 10:03:33 +0200 |
---|---|---|
committer | Greg Becker <becker33@llnl.gov> | 2021-09-21 16:58:41 -0700 |
commit | 4cd6381ed579c211c1655e6818310af838cddece (patch) | |
tree | a80236e50e2052948b1ef416f56e026aa77646ea /lib | |
parent | aebc8f6ce5674e545b22a38362c981b89a878e89 (diff) | |
download | spack-4cd6381ed579c211c1655e6818310af838cddece.tar.gz spack-4cd6381ed579c211c1655e6818310af838cddece.tar.bz2 spack-4cd6381ed579c211c1655e6818310af838cddece.tar.xz spack-4cd6381ed579c211c1655e6818310af838cddece.zip |
Remove centos:6 image references
This was EOL November 30th, 2020. I believe the "builds" are failing on
develop because of it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/containers.rst | 3 | ||||
-rw-r--r-- | lib/spack/spack/container/images.json | 7 | ||||
-rw-r--r-- | lib/spack/spack/schema/container.py | 3 |
3 files changed, 1 insertions, 12 deletions
diff --git a/lib/spack/docs/containers.rst b/lib/spack/docs/containers.rst index f5bd5602bc..67e70421da 100644 --- a/lib/spack/docs/containers.rst +++ b/lib/spack/docs/containers.rst @@ -126,9 +126,6 @@ are currently supported are summarized in the table below: * - Ubuntu 18.04 - ``ubuntu:18.04`` - ``spack/ubuntu-bionic`` - * - CentOS 6 - - ``centos:6`` - - ``spack/centos6`` * - CentOS 7 - ``centos:7`` - ``spack/centos7`` diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json index cb495908c9..9461d576d1 100644 --- a/lib/spack/spack/container/images.json +++ b/lib/spack/spack/container/images.json @@ -21,13 +21,6 @@ "build_tags": { "develop": "latest" } - }, - "centos:6": { - "os_package_manager": "yum", - "build": "spack/centos6", - "build_tags": { - "develop": "latest" - } } }, "os_package_managers": { diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py index 7e14efd75c..b9ee1dd538 100644 --- a/lib/spack/spack/schema/container.py +++ b/lib/spack/spack/schema/container.py @@ -12,8 +12,7 @@ _stages_from_dockerhub = { 'type': 'string', 'enum': ['ubuntu:18.04', 'ubuntu:16.04', - 'centos:7', - 'centos:6'] + 'centos:7'] }, 'spack': { 'type': 'string', |