Skip to content

Commit

Permalink
Merge pull request #957 from kwryankrattiger/bypass_oidc_on_service_r…
Browse files Browse the repository at this point in the history
…unners

Allow service tagged runners to define `CI_OIDC_REQUIRED`
  • Loading branch information
kwryankrattiger authored Oct 11, 2024
2 parents 234affd + bc07d1a commit 84422a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k8s/production/runners/public/graviton/2/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
if [ -z "${PY3:-}" ]; then
echo "Unable to find python3 executable"
exit 1
exit ${CI_OIDC_REQUIRED:-1}
fi
$PY3 -c "import urllib.request;urllib.request.urlretrieve('https://raw.githubusercontent.com/spack/spack-infrastructure/main/scripts/gitlab_runner_pre_build/pre_build.py', 'pre_build.py')"
Expand Down
2 changes: 1 addition & 1 deletion k8s/production/runners/public/x86_64/v2/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
if [ -z "${PY3:-}" ]; then
echo "Unable to find python3 executable"
exit 1
exit ${CI_OIDC_REQUIRED:-1}
fi
$PY3 -c "import urllib.request;urllib.request.urlretrieve('https://raw.githubusercontent.com/spack/spack-infrastructure/main/scripts/gitlab_runner_pre_build/pre_build.py', 'pre_build.py')"
Expand Down

0 comments on commit 84422a0

Please sign in to comment.