diff options
-rwxr-xr-x | .buildkite/build-test-omnibus.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.buildkite/build-test-omnibus.sh b/.buildkite/build-test-omnibus.sh index b7218f4d19..d99d25eb76 100755 --- a/.buildkite/build-test-omnibus.sh +++ b/.buildkite/build-test-omnibus.sh @@ -11,7 +11,7 @@ fi FILTER="${OMNIBUS_FILTER:=*}" # array of all container platforms in the format test-platform:build-platform -container_platforms=("amazon-2:centos-7" "amazon-2-arm:amazon-2-arm" "centos-6:centos-6" "centos-7:centos-7" "centos-7-arm:centos-7-arm" "centos-8:centos-8" "centos-8-arm:centos-8-arm" "sles-15-arm:sles-15-arm" "rhel-9:rhel-9" "rhel-9-arm:rhel-9-arm" "debian-9:debian-9" "debian-10:debian-9" "debian-11:debian-9" "ubuntu-1604:ubuntu-1604" "ubuntu-1804:ubuntu-1604" "ubuntu-2004:ubuntu-1604" "ubuntu-2204:ubuntu-1604" "ubuntu-1804-arm:ubuntu-1804-arm" "ubuntu-2004-arm:ubuntu-2004-arm" "ubuntu-2204-arm:ubuntu-2204-arm" "sles-15:sles-15" "windows-2019:windows-2019") +container_platforms=("amazon-2:centos-7" "amazon-2-arm:amazon-2-arm" "centos-6:centos-6" "centos-7:centos-7" "centos-7-arm:centos-7-arm" "centos-8:centos-8" "centos-8-arm:centos-8-arm" "sles-15-arm:sles-15-arm" "rhel-9:rhel-9" "rhel-9-arm:rhel-9-arm" "debian-9:debian-9" "debian-10:debian-9" "debian-11:debian-9" "ubuntu-1604:ubuntu-1604" "ubuntu-1804:ubuntu-1604" "ubuntu-2004:ubuntu-1604" "ubuntu-2204:ubuntu-1604" "ubuntu-1804-arm:ubuntu-1804-arm" "ubuntu-2004-arm:ubuntu-2004-arm" "ubuntu-2204-aarch64:ubuntu-2204-aarch64" "sles-15:sles-15" "windows-2019:windows-2019") # add rest of windows platforms to tests, if not on chef-oss org if [ $BUILDKITE_ORGANIZATION_SLUG != "chef-oss" ] @@ -84,7 +84,7 @@ then echo " limit: 1" echo " key: build-$platform" echo " agents:" - if [[ $platform == *"arm"* ]]; then + if [[ $platform == *"aarch64"* ]]; then echo " queue: docker-linux-arm64" else echo " queue: default-privileged" @@ -225,7 +225,7 @@ then if [[ $platform != *"windows"* ]]; then echo "- env:" echo " OMNIBUS_BUILDER_KEY: build-${platform#*:}" - if [[ $platform == *"arm"* ]]; then + if [[ $platform == *"aarch64"* ]]; then echo " label: \":mag::docker::muscle: ${platform%:*}\"" else echo " label: \":mag::docker: ${platform%:*}\"" |