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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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/39] 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 0c97b303e60789d29945396f39a2adcc5420090a Mon Sep 17 00:00:00 2001 From: stephanieatte <122297064+stephanieatte@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:25:12 -0600 Subject: [PATCH 39/39] Create gGG --- gGG | 1 + 1 file changed, 1 insertion(+) create mode 100644 gGG diff --git a/gGG b/gGG new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/gGG @@ -0,0 +1 @@ +