[CI] Optimise pipeline deployments with explicit dependencies (#955)
Pushes to master and tagged releases will have now have explicit dependencies for steps. This is specifically to prevent darwin based builds holding up execution of other steps which should not have a dependence.pull/958/head
parent
1ed1318870
commit
ce5f5e9214
|
@ -37,7 +37,11 @@ steps:
|
||||||
|
|
||||||
- label: ":github: Deploy Artifacts"
|
- label: ":github: Deploy Artifacts"
|
||||||
command: "ghartifacts.sh"
|
command: "ghartifacts.sh"
|
||||||
depends_on: ~
|
depends_on:
|
||||||
|
- "build-docker-darwin-amd64"
|
||||||
|
- "build-docker-linux-amd64"
|
||||||
|
- "build-docker-linux-arm32v7"
|
||||||
|
- "build-docker-linux-arm64v8"
|
||||||
retry:
|
retry:
|
||||||
automatic: true
|
automatic: true
|
||||||
agents:
|
agents:
|
||||||
|
|
Loading…
Reference in New Issue