From 431385cc2eb5acbd27f4d9411368996e096d7196 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:37:18 -0700 Subject: [PATCH 01/64] Create pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .buildkite/pipeline.test-user.yml diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml new file mode 100644 index 0000000..cbdabf8 --- /dev/null +++ b/.buildkite/pipeline.test-user.yml @@ -0,0 +1,4 @@ +if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then + echo "Exporting build variables" + export SHOULD_BUILD="true" +fi From bee454aa1f4208491e0b4f5989c39ddd967bf91e Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:42:52 -0700 Subject: [PATCH 02/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index cbdabf8..1b61d50 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -1,4 +1,7 @@ -if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then - echo "Exporting build variables" - export SHOULD_BUILD="true" -fi +steps: +- label: "Test Pipeline.yml" + command: | + if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then + echo "Exporting build variables" + export SHOULD_BUILD="true" + fi From 77141ebad1932cc78f659d0323e110eaf192aee5 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:03:40 -0700 Subject: [PATCH 03/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index 1b61d50..4159068 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -3,5 +3,7 @@ steps: command: | if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then echo "Exporting build variables" - export SHOULD_BUILD="true" + env: + SHOULD_BUILD: true + echo $SHOULD_BUILD fi From 472b4d6f884e0731f1557d5713112c31df21e4a7 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:04:28 -0700 Subject: [PATCH 04/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index 4159068..0c34126 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -4,6 +4,6 @@ steps: if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then echo "Exporting build variables" env: - SHOULD_BUILD: true + SHOULD_BUILD: "true" echo $SHOULD_BUILD fi From 4b5c83bbe0bd3e10646a2584307908221262b93d Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:05:56 -0700 Subject: [PATCH 05/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index 0c34126..b6867e9 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -3,7 +3,6 @@ steps: command: | if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then echo "Exporting build variables" - env: - SHOULD_BUILD: "true" - echo $SHOULD_BUILD fi + env: + SHOULD_BUILD: "true" From fd92ba870c22880cf31345a267348ff9a8fda11b Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 15 Feb 2023 15:06:46 -0700 Subject: [PATCH 06/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index b6867e9..6fca305 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -3,6 +3,7 @@ steps: command: | if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then echo "Exporting build variables" + echo $SHOULD_BUILD fi env: SHOULD_BUILD: "true" From 75a90ac7dfbf51f09deec63078201909d49f1b84 Mon Sep 17 00:00:00 2001 From: Stephanie Atte Date: Thu, 16 Feb 2023 13:11:14 -0700 Subject: [PATCH 07/64] add hook --- hooks/environment | 1 + 1 file changed, 1 insertion(+) create mode 100755 hooks/environment diff --git a/hooks/environment b/hooks/environment new file mode 100755 index 0000000..a9bf588 --- /dev/null +++ b/hooks/environment @@ -0,0 +1 @@ +#!/bin/bash From 338d9ab76767b74f217e1f0a584e2043b9a6a2d3 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:25:44 -0700 Subject: [PATCH 08/64] Update environment --- hooks/environment | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hooks/environment b/hooks/environment index a9bf588..b694b1c 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1 +1,9 @@ #!/bin/bash +set -eu + +if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then + echo "Exporting build variables" + export SHOULD_BUILD_HW1="true" + export SHOULD_BUILD_HW2="true" + export MANIFEST_BRANCH="$BUILDKITE_BRANCH" +fi From 5c0d21cfa9cc9fb4f6dfc8350150263495726f6e Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:27:18 -0700 Subject: [PATCH 09/64] Update environment --- hooks/environment | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hooks/environment b/hooks/environment index b694b1c..26c9f5f 100755 --- a/hooks/environment +++ b/hooks/environment @@ -2,8 +2,5 @@ set -eu if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then - echo "Exporting build variables" - export SHOULD_BUILD_HW1="true" - export SHOULD_BUILD_HW2="true" - export MANIFEST_BRANCH="$BUILDKITE_BRANCH" + export MANIFEST_BRANCH="$BUILDKITE_BRANCH" fi From fb49a024cadd4496e529b5bd5b13e08934a27302 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:29:41 -0700 Subject: [PATCH 10/64] Update environment --- hooks/environment | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hooks/environment b/hooks/environment index 26c9f5f..6481b20 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,6 +1,4 @@ #!/bin/bash set -eu -if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then - export MANIFEST_BRANCH="$BUILDKITE_BRANCH" -fi +export MANIFEST_BRANCH='APPLE' From 845bad4f4269c36001ce8eb48edc0e4f073b2772 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:35:00 -0700 Subject: [PATCH 11/64] Update environment --- hooks/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/environment b/hooks/environment index 6481b20..ef1ff7e 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,4 +1,4 @@ #!/bin/bash set -eu -export MANIFEST_BRANCH='APPLE' +export BUILDKITE_BUILD_AUTHOR='stephanie___' From 8af71509a1a4f1af3fedb2a095a7c421e0fbf5b7 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:37:14 -0700 Subject: [PATCH 12/64] Update environment --- hooks/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/environment b/hooks/environment index ef1ff7e..03ee982 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,4 +1,4 @@ #!/bin/bash set -eu -export BUILDKITE_BUILD_AUTHOR='stephanie___' +export BUILDKITE_STEPHANIE='stephanie___' From 10af0a4d989e73a9b43e451e594c77efa18496b0 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:48:18 -0700 Subject: [PATCH 13/64] Update environment --- hooks/environment | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hooks/environment b/hooks/environment index 03ee982..f01dca2 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,4 +1,6 @@ #!/bin/bash -set -eu +set -ueo pipefail -export BUILDKITE_STEPHANIE='stephanie___' +export BUILDKITE_REPO="" +export BUILDKITE_PLUGIN_DOCKER_COMPOSE_REQUIRE_PREBUILD="true" +export mystuff='hello' From 55c3b9a683a289caa7a14835ee6430bf616b6eaf Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 13:54:35 -0700 Subject: [PATCH 14/64] Update environment --- hooks/environment | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hooks/environment b/hooks/environment index f01dca2..d1c7da2 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,6 +1,7 @@ #!/bin/bash -set -ueo pipefail +set -euo pipefail -export BUILDKITE_REPO="" -export BUILDKITE_PLUGIN_DOCKER_COMPOSE_REQUIRE_PREBUILD="true" -export mystuff='hello' +if [[ "$BUILDKITE_PIPELINE_SLUG" == "samplequestions2" ]]; then + export SHOULD_BUILD_HW1="true" + export SHOULD_BUILD_HW2="true" +fi From 43338e891f477da88b8f9fca47c89f00bbbda7ed Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Feb 2023 14:34:37 -0700 Subject: [PATCH 15/64] Update environment --- hooks/environment | 1 + 1 file changed, 1 insertion(+) diff --git a/hooks/environment b/hooks/environment index d1c7da2..8482a35 100755 --- a/hooks/environment +++ b/hooks/environment @@ -4,4 +4,5 @@ set -euo pipefail if [[ "$BUILDKITE_PIPELINE_SLUG" == "samplequestions2" ]]; then export SHOULD_BUILD_HW1="true" export SHOULD_BUILD_HW2="true" + export MANIFEST_BRANCH=$BUILDKITE_BRANCH fi From 641d7b51c45d8a2bd3e292d2defa8f4ce6d8b3e0 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 22 Feb 2023 12:24:05 -0700 Subject: [PATCH 16/64] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd7346f..d47daae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Buildkite Tutorial -This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. +hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started From a8c381d42d4ab6b4e61274e2b985cadac9e64757 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:00:54 -0700 Subject: [PATCH 17/64] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d47daae..c5ac0dd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started - +try pr Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 8354da6a150fe396cd04a8bd556e738a3e484fb8 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:02:10 -0700 Subject: [PATCH 18/64] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d47daae..c5ac0dd 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started - +try pr Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 791c948972e552c6fadadd5fc6fab675d96d3f1a Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:05:14 -0700 Subject: [PATCH 19/64] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5ac0dd..c9c3912 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -try pr +try prs Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From eedcd40f3dbc350e769e9bd9189c82f6645488c4 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:05:46 -0700 Subject: [PATCH 20/64] push code to readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9c3912..af0f998 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -try prs +commit changes Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 3c31bf2269084b1a539229049c9c8646cb94a5bb Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:07:17 -0700 Subject: [PATCH 21/64] pr on master --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c5ac0dd..4a3ac94 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -try pr +pull request Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 0d2d1f7ae236faee837b5ee3ca498c7c1a20ba30 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:08:02 -0700 Subject: [PATCH 22/64] pr on master-new --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af0f998..4a3ac94 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -commit changes +pull request Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 00831aec259f55923aeaeaf147b30ceff5dc5d79 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:11:27 -0700 Subject: [PATCH 23/64] try pr without pr checkbox master-new --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a3ac94..af2b881 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -pull request +try pr without pr checkbox Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From df0d518fff2c98294298ca59c4beb0c50768bb5f Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:11:49 -0700 Subject: [PATCH 24/64] try pr without pr checkbox on master --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a3ac94..af2b881 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -pull request +try pr without pr checkbox Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 8f439329788cb01209327b3a2aeb3ba3e45002b4 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:16:50 -0700 Subject: [PATCH 25/64] try pr without pr checkbox and master-new selected on master --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af2b881..9019e8a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -try pr without pr checkbox +try pr without pr checkbox and master-new selected Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From 54f7b2a26af90be513a90916493740f9ad9047f6 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 24 Feb 2023 13:17:14 -0700 Subject: [PATCH 26/64] try pr without pr checkbox and master-new selected on master-new --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af2b881..9019e8a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ hello This repo contains various Buildkite pipelines for a tutorial (soon to be published) on Stark & Wayne blog. ## Get started -try pr without pr checkbox +try pr without pr checkbox and master-new selected Click the following button to start [the tutorial](https://github.com/starkandwayne/buildkite-tutorial) on your [free Buildkite account](https://buildkite.com/pricing): [![Start tutorial on Buildkite](https://buildkite.com/button.svg)](https://buildkite.com/new) From ff7686e2337845dfa0e4ac1a9934d76112d6da77 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Mon, 13 Mar 2023 16:10:51 -0600 Subject: [PATCH 27/64] Update pipeline.test-user.yml --- .buildkite/pipeline.test-user.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.buildkite/pipeline.test-user.yml b/.buildkite/pipeline.test-user.yml index 6fca305..cebcc09 100644 --- a/.buildkite/pipeline.test-user.yml +++ b/.buildkite/pipeline.test-user.yml @@ -1,9 +1,3 @@ steps: -- label: "Test Pipeline.yml" - command: | - if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "" ]; then - echo "Exporting build variables" - echo $SHOULD_BUILD - fi - env: - SHOULD_BUILD: "true" + - label: ":desktop_computer:" + command: ./src/watch-github-release.sh From c9aa151799204d2500fbb61ec97e473d7b35dc30 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:01:27 -0600 Subject: [PATCH 28/64] Update environment --- hooks/environment | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hooks/environment b/hooks/environment index 8482a35..bb95982 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,8 +1,10 @@ #!/bin/bash set -euo pipefail -if [[ "$BUILDKITE_PIPELINE_SLUG" == "samplequestions2" ]]; then +if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "dunfell" ]; then + echo "The branch being built is: $BUILDKITE_PULL_REQUEST_BASE_BRANCH" + echo "Exporting build variables" export SHOULD_BUILD_HW1="true" export SHOULD_BUILD_HW2="true" - export MANIFEST_BRANCH=$BUILDKITE_BRANCH + export MANIFEST_BRANCH="$BUILDKITE_BRANCH" fi From c6001372d78c98eb157b9a3f9cfe78b692ea0cdf Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:07:03 -0600 Subject: [PATCH 29/64] Update environment --- hooks/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/environment b/hooks/environment index bb95982..39e4410 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -if [ "$BUILDKITE_PULL_REQUEST_BASE_BRANCH" == "dunfell" ]; then +if [ "$BUILDKITE_BRANCH =="master" ]; then echo "The branch being built is: $BUILDKITE_PULL_REQUEST_BASE_BRANCH" echo "Exporting build variables" export SHOULD_BUILD_HW1="true" From 0818f70b2b4e4f28e7e3a320e23362573443eff1 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:08:28 -0600 Subject: [PATCH 30/64] Update environment --- hooks/environment | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hooks/environment b/hooks/environment index 39e4410..b9911e1 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,10 +1,10 @@ #!/bin/bash set -euo pipefail -if [ "$BUILDKITE_BRANCH =="master" ]; then - echo "The branch being built is: $BUILDKITE_PULL_REQUEST_BASE_BRANCH" - echo "Exporting build variables" - export SHOULD_BUILD_HW1="true" - export SHOULD_BUILD_HW2="true" - export MANIFEST_BRANCH="$BUILDKITE_BRANCH" +if ["$BUILDKITE_BRANCH =="master" ]; then + echo "The branch being built is: $BUILDKITE_PULL_REQUEST_BASE_BRANCH" + echo "Exporting build variables" + export SHOULD_BUILD_HW1="true" + export SHOULD_BUILD_HW2="true" + export MANIFEST_BRANCH="$BUILDKITE_BRANCH" fi From 406c6d503a6ff5e0a073ffd2a49a9ccf018f07d3 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:17:41 -0600 Subject: [PATCH 31/64] Update environment --- hooks/environment | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/hooks/environment b/hooks/environment index b9911e1..fd89310 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,10 +1,7 @@ #!/bin/bash set -euo pipefail -if ["$BUILDKITE_BRANCH =="master" ]; then - echo "The branch being built is: $BUILDKITE_PULL_REQUEST_BASE_BRANCH" - echo "Exporting build variables" - export SHOULD_BUILD_HW1="true" - export SHOULD_BUILD_HW2="true" - export MANIFEST_BRANCH="$BUILDKITE_BRANCH" +if [[ "$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then + export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" + fi From 1d0b26619755979551e9c5fe6184363ea3e5bbfa Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:20:32 -0600 Subject: [PATCH 32/64] Update environment --- hooks/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/environment b/hooks/environment index fd89310..a249591 100755 --- a/hooks/environment +++ b/hooks/environment @@ -1,7 +1,7 @@ #!/bin/bash set -euo pipefail -if [[ "$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then +if [[ "$$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" fi From 82bce8e1be6ecdadc3c9ca15cafa7f1a7bf40888 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:34:46 -0600 Subject: [PATCH 33/64] Update environment --- hooks/environment | 1 + 1 file changed, 1 insertion(+) diff --git a/hooks/environment b/hooks/environment index a249591..d27d7b0 100755 --- a/hooks/environment +++ b/hooks/environment @@ -3,5 +3,6 @@ set -euo pipefail if [[ "$$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" + export baby="baby_boo" fi From c3ec0bc0017a358b1cac7bb09a3467ea1089182c Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 13:37:04 -0600 Subject: [PATCH 34/64] Update environment --- hooks/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/environment b/hooks/environment index d27d7b0..d223d7d 100755 --- a/hooks/environment +++ b/hooks/environment @@ -3,6 +3,6 @@ set -euo pipefail if [[ "$$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" - export baby="baby_boo" + export baby="babyboo" fi From 3b362ab3690634975c796856a8630d5fe587f594 Mon Sep 17 00:00:00 2001 From: Stephanie Atte Date: Thu, 16 Mar 2023 15:03:43 -0600 Subject: [PATCH 35/64] added hook --- hook/environment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 hook/environment diff --git a/hook/environment b/hook/environment new file mode 100755 index 0000000..d223d7d --- /dev/null +++ b/hook/environment @@ -0,0 +1,8 @@ +#!/bin/bash +set -euo pipefail + +if [[ "$$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then + export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" + export baby="babyboo" + +fi From 5794a7da2143126c1a2612886d10ccc59469e8c2 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 16 Mar 2023 16:09:48 -0600 Subject: [PATCH 36/64] Update environment --- hook/environment | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hook/environment b/hook/environment index d223d7d..ea2d80b 100755 --- a/hook/environment +++ b/hook/environment @@ -1,6 +1,6 @@ #!/bin/bash set -euo pipefail - +export baby="babyboo" if [[ "$$BUILDKITE_PIPELINE_SLUG" == "samplequestion4" ]]; then export BUILDKITE_ANALYTICS_TOKEN="oS3AG0eBuUJMWRgkRvek" export baby="babyboo" From 435e672bb350e8e319c2b650b2068746fd4e3338 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 20 Jul 2023 13:18:21 -0600 Subject: [PATCH 37/64] Create scads --- scads | 1 + 1 file changed, 1 insertion(+) create mode 100644 scads diff --git a/scads b/scads new file mode 100644 index 0000000..22b6cf7 --- /dev/null +++ b/scads @@ -0,0 +1 @@ +tesdsd From 8c70e86dd1e904138a71dbd07c37562638de7592 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 20 Jul 2023 13:39:34 -0600 Subject: [PATCH 38/64] Create fife --- fife | 1 + 1 file changed, 1 insertion(+) create mode 100644 fife diff --git a/fife b/fife new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/fife @@ -0,0 +1 @@ + From 89e75711bc24eadcbeefe6d2d7808baf889a7e02 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:41:59 -0600 Subject: [PATCH 39/64] Create jr --- jr | 1 + 1 file changed, 1 insertion(+) create mode 100644 jr diff --git a/jr b/jr new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/jr @@ -0,0 +1 @@ + From e15efce3ab728bbed877372943d164bc4dcdefae Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:43:46 -0600 Subject: [PATCH 40/64] Create kfjmfm --- kfjmfm | 1 + 1 file changed, 1 insertion(+) create mode 100644 kfjmfm diff --git a/kfjmfm b/kfjmfm new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/kfjmfm @@ -0,0 +1 @@ + From b5d3daf6578e6e761a8ae4e797526d3d2caa9635 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 09:21:41 -0600 Subject: [PATCH 41/64] Create pipeline.yml --- pipeline.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 pipeline.yml diff --git a/pipeline.yml b/pipeline.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pipeline.yml @@ -0,0 +1 @@ + From 5cf5765255f5d9d3f46c1dc01ffb24d83b8d75a3 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 09:22:31 -0600 Subject: [PATCH 42/64] Update pipeline.yml --- pipeline.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pipeline.yml b/pipeline.yml index 8b13789..23c5e1c 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1 +1,6 @@ +steps: + - command: "exit -1" +notify: + - email: "stephanie@buildkite.com" + if: build.state == "failing" From 32f13c58bb306fa33453dcd3472993c1770dffad Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 09:24:03 -0600 Subject: [PATCH 43/64] Update pipeline.yml --- pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index 23c5e1c..fe60292 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,6 +1,6 @@ steps: - - command: "exit -1" + - command: "echo hi" notify: - email: "stephanie@buildkite.com" - if: build.state == "failing" + if: build.state == "passed" From 22f0f330d990643e74471dc6e810eac6b2a3a209 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 11:57:19 -0600 Subject: [PATCH 44/64] Update pipeline.yml --- pipeline.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index fe60292..b4ed71c 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,6 +1,13 @@ steps: - command: "echo hi" - + - label: "build" + command: "GOOS=go build" + env: + os: "" + matrix: + - "darwin" + - "Linux" + - "Windows" notify: - email: "stephanie@buildkite.com" if: build.state == "passed" From e950e5b1a482cd09793d58baf57c0b5e865459ff Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 11:59:11 -0600 Subject: [PATCH 45/64] Update pipeline.yml --- pipeline.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index b4ed71c..633c52b 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,12 +1,12 @@ steps: - - command: "echo hi" - - label: "build" - command: "GOOS=go build" - env: - os: "" - matrix: - - "darwin" - - "Linux" +steps: + - label: "{{matrix}} build" + command: "GOOS={{matrix}} go build" + env: + os: "{{matrix}}" + matrix: + - "darwin" + - "Linux" - "Windows" notify: - email: "stephanie@buildkite.com" From 7758863eb9b95e83ae4c04b7295b9564f3f3c60c Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:02:55 -0600 Subject: [PATCH 46/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 633c52b..dd6e3d3 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -5,7 +5,7 @@ steps: env: os: "{{matrix}}" matrix: - - "darwin" + - "$$BUILDKITE_PIPELINE_ID" - "Linux" - "Windows" notify: From e5edb3d198ce9429d2385e8993d7ccee1b801aa5 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:03:55 -0600 Subject: [PATCH 47/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index dd6e3d3..549aefa 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,7 +1,7 @@ steps: steps: - label: "{{matrix}} build" - command: "GOOS={{matrix}} go build" + command: "echo GOOS={{matrix}} " env: os: "{{matrix}}" matrix: From 1a9ef434eed5be8c87db8e34dafd2d6cf8ee6931 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:05:27 -0600 Subject: [PATCH 48/64] Update pipeline.yml --- pipeline.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index 549aefa..a51eaaf 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,11 +1,10 @@ -steps: steps: - label: "{{matrix}} build" command: "echo GOOS={{matrix}} " env: os: "{{matrix}}" matrix: - - "$$BUILDKITE_PIPELINE_ID" + - "$$BUILDKITE_MESSAGE" - "Linux" - "Windows" notify: From c737f11ca5c30445ad8ced698a2042578ae78778 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:45:13 -0600 Subject: [PATCH 49/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index a51eaaf..bf753ad 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,6 +1,6 @@ steps: - label: "{{matrix}} build" - command: "echo GOOS={{matrix}} " + command: "exit -1" env: os: "{{matrix}}" matrix: From 6dc2b19f9ab84ca5503f3300438cff9e00c06bae Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:46:16 -0600 Subject: [PATCH 50/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index bf753ad..572ecca 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,6 +1,6 @@ steps: - label: "{{matrix}} build" - command: "exit -1" + command: "echo hi" env: os: "{{matrix}}" matrix: From ced6439e38ffcfb494b8a496d7d0dc0158fb3061 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:47:32 -0600 Subject: [PATCH 51/64] Update pipeline.yml --- pipeline.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index 572ecca..4740063 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,12 +1,10 @@ steps: - label: "{{matrix}} build" - command: "echo hi" + command: "exit -1" env: os: "{{matrix}}" matrix: - "$$BUILDKITE_MESSAGE" - "Linux" - "Windows" -notify: - - email: "stephanie@buildkite.com" - if: build.state == "passed" + From 91afe251fb874bfda3dc86b7bce014a4519b31f3 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 12:49:00 -0600 Subject: [PATCH 52/64] Update pipeline.yml --- pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipeline.yml b/pipeline.yml index 4740063..b491f5f 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -8,3 +8,5 @@ steps: - "Linux" - "Windows" +notify: + - email: "stephanie@buildkite.com" From 75613120981bf04b093aa5caeff2683b50ce08ee Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 13:59:00 -0600 Subject: [PATCH 53/64] Update pipeline.yml --- pipeline.yml | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index b491f5f..96c3a9c 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,12 +1,31 @@ steps: - - label: "{{matrix}} build" - command: "exit -1" - env: - os: "{{matrix}}" - matrix: - - "$$BUILDKITE_MESSAGE" - - "Linux" - - "Windows" - -notify: - - email: "stephanie@buildkite.com" + - command: echo "Running unit tests" + key: unit-tests + + - command: echo "--> Start of concurrency gate" + concurrency_group: gate + concurrency: 1 + key: start-gate + depends_on: unit-tests + + - wait + + - command: echo "Running deployment to staging environment" + key: stage-deploy + depends_on: start-gate + + - command: echo "Running e2e tests after the deployment" + parallelism: 3 + depends_on: [stage-deploy] + key: e2e + + - wait + + - command: echo "End of concurrency gate <--" + concurrency_group: gate + concurrency: 1 + key: end-gate + + - command: echo "This and subsequent steps run independently" + depends_on: end-gate + From 9a9ae405058658238b7c63bb550558c6cd8260d5 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 14:00:52 -0600 Subject: [PATCH 54/64] Update pipeline.yml --- pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 96c3a9c..5d924f9 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -16,7 +16,6 @@ steps: - command: echo "Running e2e tests after the deployment" parallelism: 3 - depends_on: [stage-deploy] key: e2e - wait From 526cb394bdb042c9bade2ec67a33d77400477f5b Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Tue, 25 Jul 2023 14:03:27 -0600 Subject: [PATCH 55/64] Update pipeline.yml --- pipeline.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 5d924f9..b7a9cc7 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -12,7 +12,6 @@ steps: - command: echo "Running deployment to staging environment" key: stage-deploy - depends_on: start-gate - command: echo "Running e2e tests after the deployment" parallelism: 3 From 5dd47e8674ef7c5cd463e7f8c6c41c59772b6432 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:26:21 -0600 Subject: [PATCH 56/64] Update pipeline.yml --- pipeline.yml | 30 ++---------------------------- 1 file changed, 2 insertions(+), 28 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index b7a9cc7..6535f0f 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,29 +1,3 @@ steps: - - command: echo "Running unit tests" - key: unit-tests - - - command: echo "--> Start of concurrency gate" - concurrency_group: gate - concurrency: 1 - key: start-gate - depends_on: unit-tests - - - wait - - - command: echo "Running deployment to staging environment" - key: stage-deploy - - - command: echo "Running e2e tests after the deployment" - parallelism: 3 - key: e2e - - - wait - - - command: echo "End of concurrency gate <--" - concurrency_group: gate - concurrency: 1 - key: end-gate - - - command: echo "This and subsequent steps run independently" - depends_on: end-gate - + - command: "exit -1" + From 7cd16e081812ea88cb5c076f8e141e7f1fddaa79 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:27:13 -0600 Subject: [PATCH 57/64] Update pipeline.yml --- pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/pipeline.yml b/pipeline.yml index 6535f0f..e341572 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,3 +1,4 @@ steps: - command: "exit -1" + soft_fail: true From 4e727f4c29b528d16b0fb2fb35a4f6f82180c4fe Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:29:17 -0600 Subject: [PATCH 58/64] Update pipeline.yml --- pipeline.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pipeline.yml b/pipeline.yml index e341572..45870fe 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,4 +1,11 @@ steps: - command: "exit -1" soft_fail: true + key: 'one' + + - label: 'Step 5' + command: | + if [ $(buildkite-agent step get "outcome" --step "one") == "hard_failed" ]; then + buildkite-agent annotate 'this build failed' --style 'error' + fi From cf04ac101174d3e448cb1199912d6d1c4c652cec Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:29:58 -0600 Subject: [PATCH 59/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 45870fe..683379f 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -5,7 +5,7 @@ steps: - label: 'Step 5' command: | - if [ $(buildkite-agent step get "outcome" --step "one") == "hard_failed" ]; then + if [ $(buildkite-agent step get "outcome" --step "one") == "soft_failed" ]; then buildkite-agent annotate 'this build failed' --style 'error' fi From 113132f18b6a8fae3b3acdc6c8ce082a823e4100 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:34:25 -0600 Subject: [PATCH 60/64] Update pipeline.yml --- pipeline.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index 683379f..77f93d3 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -6,6 +6,13 @@ steps: - label: 'Step 5' command: | if [ $(buildkite-agent step get "outcome" --step "one") == "soft_failed" ]; then - buildkite-agent annotate 'this build failed' --style 'error' + cat <<- YAML | buildkite-agent pipeline upload + steps: + - label: "Commit status for soft fail" + command: "echo inside commit" + notify: + - github_commit_status: + context: "my-custom-status-for-soft-fail" + YAML fi - + From 189f9afbd03a2cee5076caa6c3b58b6c28d6903d Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:37:18 -0600 Subject: [PATCH 61/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 77f93d3..7dbdcc4 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -12,7 +12,7 @@ steps: command: "echo inside commit" notify: - github_commit_status: - context: "my-custom-status-for-soft-fail" + context: "my-status-for-soft-fail" YAML fi From abe7dc68f3dbce40c1b769a8974bd5a28eb01361 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:40:03 -0600 Subject: [PATCH 62/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 7dbdcc4..f1bc3f5 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,5 +1,5 @@ steps: - - command: "exit -1" + - command: "echo hi" soft_fail: true key: 'one' From 25c0b71fca3f05a089e76ecd061d2f4034d58567 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:44:20 -0600 Subject: [PATCH 63/64] Update pipeline.yml --- pipeline.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pipeline.yml b/pipeline.yml index f1bc3f5..7a3b6ee 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -8,8 +8,6 @@ steps: if [ $(buildkite-agent step get "outcome" --step "one") == "soft_failed" ]; then cat <<- YAML | buildkite-agent pipeline upload steps: - - label: "Commit status for soft fail" - command: "echo inside commit" notify: - github_commit_status: context: "my-status-for-soft-fail" From 11370099ab9e8418c02667ab3cfcb0ef48b9c2f2 Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Fri, 28 Jul 2023 11:40:28 -0600 Subject: [PATCH 64/64] Update pipeline.yml --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 7a3b6ee..ef69355 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -10,7 +10,7 @@ steps: steps: notify: - github_commit_status: - context: "my-status-for-soft-fail" + context: "my-status-for-soft-fadfdfil" YAML fi