我有一个用例,我需要运行相同的管道但使用不同的环境变量,例如 dev/qa/stage/prod。
我尝试使用环境变量在运行时进行更改但没有成功
管道.yaml
steps:
- label: ":wrench: Run ui tests on dev"
command: "docker run --rm -e INSTANCE=${dev} gcr.io/xyz/tests:${BUILDKITE_COMMIT:0:7}"
- wait
请帮我解决这个问题。
我有一个用例,我需要运行相同的管道但使用不同的环境变量,例如 dev/qa/stage/prod。
我尝试使用环境变量在运行时进行更改但没有成功
管道.yaml
steps:
- label: ":wrench: Run ui tests on dev"
command: "docker run --rm -e INSTANCE=${dev} gcr.io/xyz/tests:${BUILDKITE_COMMIT:0:7}"
- wait
请帮我解决这个问题。