Don't require OIDC initialization for noop (#46921)

ref. https://github.com/spack/spack-infrastructure/pull/957
This commit is contained in:
kwryankrattiger 2024-10-14 23:39:55 -05:00 committed by GitHub
parent 507965cbc6
commit c8f61c8662
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,7 @@
"tags": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}},
"variables": { "variables": {
"type": "object", "type": "object",
"patternProperties": {r"[\w\d\-_\.]+": {"type": "string"}}, "patternProperties": {r"[\w\d\-_\.]+": {"type": ["string", "number"]}},
}, },
"before_script": script_schema, "before_script": script_schema,
"script": script_schema, "script": script_schema,

View File

@ -108,6 +108,7 @@ ci:
tags: ["service"] tags: ["service"]
image: busybox:latest image: busybox:latest
variables: variables:
CI_OIDC_REQUIRED: 0
GIT_STRATEGY: "none" GIT_STRATEGY: "none"
CI_JOB_SIZE: "small" CI_JOB_SIZE: "small"
KUBERNETES_CPU_REQUEST: "500m" KUBERNETES_CPU_REQUEST: "500m"