Commit 362d921
ENG-1281: trigger.sh is no longer necessary. (#30)
ENG-1281 replaces trigger.sh with `imp-ci steps run --from ...steps.yaml`.
If, after this deletion, your pipeline fails to run, you should:
```bash
cd {repo-root}
circle ci pipeline push -n {name}
```
and retry, because (apologies) I must have missed it when I bulk-updated pipelines in BuildKite.
The pipeline definition _within the buildkite pipeline settings page_ should resemble:
```yaml
steps:
- agents:
- environment=production
- queue=trigger-pipelines
command: imp-ci steps run --from .buildkite/premerge.steps.yaml
label: premerge
retry:
automatic:
- exit_status: -1
limit: 3
timeout_in_minutes: 10
- wait: wait-for-steps-upload
```
The two differences that my change makes are
* ENG-1281: the change to the command step from `.buildkite/trigger.sh {name}.steps.yaml` to `imp-ci steps run --from {name}.steps.yaml`
* ENG-1450: the addition of the `- wait: wait-for-steps-upload` _after_ the `command` step (to eliminate a race condition when cancelling a pipeline).1 parent 2f1b725 commit 362d921
1 file changed
+0
-12
lines changedThis file was deleted.
0 commit comments