diff options
author | Vincent Ambo <mail@tazj.in> | 2022-01-19T14·56+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-19T17·22+0000 |
commit | c2e6c0719c68171a6d4902893ffb09aa8002b183 (patch) | |
tree | 7db16307fade20b3fcd98a5b45835762df659594 /ops/pipelines/static-pipeline.yaml | |
parent | f0aa5ae3a2f519d5bdee84439fa38287818793c3 (diff) |
refactor(ops/pipelines): Generalise fetch-parent-targets script r/3636
Removes all TVL-specific values in favour of environment variables supplied by Buildkite. This makes it possible to reuse this script outside of TVL. Change-Id: Ic543bc41e4c81e65ee349ad241c515231e97ab30 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5005 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: ezemtsov <eugene.zemtsov@gmail.com>
Diffstat (limited to 'ops/pipelines/static-pipeline.yaml')
-rw-r--r-- | ops/pipelines/static-pipeline.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ops/pipelines/static-pipeline.yaml b/ops/pipelines/static-pipeline.yaml index 52f9f82039d3..ffdb6a75c5f2 100644 --- a/ops/pipelines/static-pipeline.yaml +++ b/ops/pipelines/static-pipeline.yaml @@ -21,8 +21,8 @@ steps: ops/pipelines/fetch-parent-targets.sh PIPELINE_ARGS="" - if [[ -f ./parent-target-map.json ]]; then - PIPELINE_ARGS="--arg parentTargetMap ./parent-target-map.json" + if [[ -f tmp/parent-target-map.json ]]; then + PIPELINE_ARGS="--arg parentTargetMap tmp/parent-target-map.json" fi nix-build -A ops.pipelines.depot -o pipeline --show-trace $$PIPELINE_ARGS |