summaryrefslogtreecommitdiff
path: root/.expeditor
diff options
context:
space:
mode:
authorSean Simmons <ssimmons@progress.com>2023-03-28 12:19:24 -0400
committerSean Simmons <ssimmons@progress.com>2023-03-28 12:19:24 -0400
commitcfa0d9aa1d6f26cf4ef32e9bdb76fa9f704b59ab (patch)
treebba25e6daa57eb15e84851b7ecaf707d07159bd8 /.expeditor
parent06b6f0353605b092e29596adaf5cde70700e018c (diff)
downloadchef-cfa0d9aa1d6f26cf4ef32e9bdb76fa9f704b59ab.tar.gz
attempting hard code for sles-15-arm
Signed-off-by: Sean Simmons <ssimmons@progress.com>
Diffstat (limited to '.expeditor')
-rwxr-xr-x.expeditor/scripts/omnibus_chef_build.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/.expeditor/scripts/omnibus_chef_build.sh b/.expeditor/scripts/omnibus_chef_build.sh
index 751356d3b3..cd4a223d2a 100755
--- a/.expeditor/scripts/omnibus_chef_build.sh
+++ b/.expeditor/scripts/omnibus_chef_build.sh
@@ -12,8 +12,13 @@ export PATH="/opt/omnibus-toolchain/bin:${PATH}"
export OMNIBUS_FIPS_MODE="true"
export OMNIBUS_PIPELINE_DEFINITION_PATH="${SCRIPT_DIR}/../release.omnibus.yml"
-echo "--- Installing Chef Foundation"
-curl -fsSL https://omnitruck.chef.io/chef/install.sh | bash -s -- -c "current" -P "chef-foundation" -v "$CHEF_FOUNDATION_VERSION"
+if [[ "$BUILDKITE_STEP_KEY" = "build-sles-15-arm"]]; then
+ echo "--- Installing Chef Foundation for sles-15-arm"
+ curl -fsSL https://artifactory-internal.ps.chef.co/artifactory/omnibus-current-local/com/getchef/chef-foundation/3.0.6/sles/15/chef-foundation-3.0.6-1.sles15.aarch64.rpm | rpm -i chef-foundation-3.0.6-1.sles15.aarch64.rpm
+ else
+ echo "--- Installing Chef Foundation"
+ curl -fsSL https://omnitruck.chef.io/chef/install.sh | bash -s -- -c "current" -P "chef-foundation" -v "$CHEF_FOUNDATION_VERSION"
+fi
if [[ -f "/opt/omnibus-toolchain/embedded/ssl/certs/cacert.pem" ]]; then
export SSL_CERT_FILE="/opt/omnibus-toolchain/embedded/ssl/certs/cacert.pem"