Will Robinson
Will Robinson
I ran into a similar with AWS' CodePipeline & CodeBuild. The pipeline continues for debugging purposes. I got the desired outcome by looking at the `CODEBUILD_BUILD_SUCCEEDING` environment variable. Here's a...
No worries @cvdabbeele. `CODEBUILD_BUILD_SUCCEEDING` is an AWS environment variable. Perhaps the Azure equivalent is `Agent.JobStatus` ([reference](https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml#agent-variables)). ``` You can use agent variables as environment variables in your scripts and as...
I use the "invisible edge" method. See [this answer](https://stackoverflow.com/a/46559144/6233477) for an example.