gitlab ci: Do not force protected build jobs to run on aws runners (#33314)

This commit is contained in:
Scott Wittenburg 2022-10-17 08:29:56 -06:00 committed by GitHub
parent 25e35c936b
commit 1be6506e29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"])