CI: Add environment variables for edition to all pipelines (#58964)

Add environment variables to pipelines
This commit is contained in:
Dimitris Sotirakis
2022-11-18 16:15:04 +02:00
committed by GitHub
parent 766867735d
commit 0bf3c98eec
13 changed files with 87 additions and 19 deletions
+2 -1
View File
@@ -38,11 +38,12 @@ def shellcheck_step():
}
def shellcheck_pipeline():
environment = {'EDITION': 'oss'}
steps = [
compile_build_cmd(),
shellcheck_step(),
]
return pipeline(
name='pr-shellcheck', edition="oss", trigger=trigger, services=[], steps=steps,
name='pr-shellcheck', edition="oss", trigger=trigger, services=[], steps=steps, environment=environment,
)