summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorScott Wittenburg <scott.wittenburg@kitware.com>2022-10-17 08:29:56 -0600
committerGitHub <noreply@github.com>2022-10-17 07:29:56 -0700
commit1be6506e29b57bd905145c8f08fbd7193e74bb78 (patch)
tree58e74bb9a2f3b03c7d8e140fabff3a56fa85f7bf /lib
parent25e35c936b4f666f09163bbdde13ca52aea3d8f1 (diff)
downloadspack-1be6506e29b57bd905145c8f08fbd7193e74bb78.tar.gz
spack-1be6506e29b57bd905145c8f08fbd7193e74bb78.tar.bz2
spack-1be6506e29b57bd905145c8f08fbd7193e74bb78.tar.xz
spack-1be6506e29b57bd905145c8f08fbd7193e74bb78.zip
gitlab ci: Do not force protected build jobs to run on aws runners (#33314)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/ci.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/ci.py b/lib/spack/spack/ci.py
index c54596fea6..e471e04209 100644
--- a/lib/spack/spack/ci.py
+++ b/lib/spack/spack/ci.py
@@ -878,7 +878,7 @@ def generate_gitlab_ci_yaml(
# For spack pipelines "public" and "protected" are reserved tags
tags = _remove_reserved_tags(tags)
if spack_pipeline_type == "spack_protected_branch":
- tags.extend(["aws", "protected"])
+ tags.extend(["protected"])
elif spack_pipeline_type == "spack_pull_request":
tags.extend(["public"])