summaryrefslogtreecommitdiff
path: root/.buildkite/verify.pipeline.sh
diff options
context:
space:
mode:
authorSean Simmons <ssimmons@progress.com>2023-03-30 14:33:50 -0400
committerSean Simmons <ssimmons@progress.com>2023-03-30 14:33:50 -0400
commitc1c6bbfb11d32b3668b40f503e1e695e988df990 (patch)
tree3359b582cdd1a59b2d34070e237951574ed8fe8d /.buildkite/verify.pipeline.sh
parenta75cd086c42a025c5953df45594772e844eb94cc (diff)
downloadchef-c1c6bbfb11d32b3668b40f503e1e695e988df990.tar.gz
fixing one small missed step
Signed-off-by: Sean Simmons <ssimmons@progress.com>
Diffstat (limited to '.buildkite/verify.pipeline.sh')
-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