summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsean-simmons-progress <111799713+sean-simmons-progress@users.noreply.github.com>2023-03-30 18:05:17 -0400
committerGitHub <noreply@github.com>2023-03-30 18:05:17 -0400
commit5a1bd6e1dd5c1b503f4b9da1d927293ee6a66677 (patch)
tree3359b582cdd1a59b2d34070e237951574ed8fe8d
parenta75cd086c42a025c5953df45594772e844eb94cc (diff)
parentc1c6bbfb11d32b3668b40f503e1e695e988df990 (diff)
downloadchef-5a1bd6e1dd5c1b503f4b9da1d927293ee6a66677.tar.gz
Merge pull request #13661 from chef/sean-simmons-progress/bugfix/releaseConfig
fixing one small missed step
-rwxr-xr-x.buildkite/verify.pipeline.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/.buildkite/verify.pipeline.sh b/.buildkite/verify.pipeline.sh
index cf7346752f..626eb6d240 100755
--- a/.buildkite/verify.pipeline.sh
+++ b/.buildkite/verify.pipeline.sh
@@ -169,7 +169,11 @@ for plan in ${habitat_plans[@]}; do
fi
done
-# include build and test omnibus pipeline
-# DIR="${BASH_SOURCE%/*}"
-# if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
-# source "$DIR/build-test-omnibus.sh" \ No newline at end of file
+#include build and test omnibus pipeline
+if [[ $BUILDKITE_ORGANIZATION_SLUG != "chef-oss" ]]; then
+ DIR="${BASH_SOURCE%/*}"
+ if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
+ source "$DIR/build-test-omnibus.sh"
+else
+ echo "--- Finished with chef-oss"
+fi \ No newline at end of file