"platforms/reference/tests/TestReferenceCheckpoints.cpp" did not exist on "0b662b4991e37286331dd4b5755d53f2b79fd1dd"
Unverified Commit b72f714b authored by Matti Picus's avatar Matti Picus Committed by GitHub
Browse files

Merge pull request #490 from radarhere/arm64v8

Replaced aarch64 with arm64v8 for default alpine DOCKER_TEST_IMAGE
parents 1c63a9f0 fbd73965
...@@ -120,10 +120,14 @@ function install_run { ...@@ -120,10 +120,14 @@ function install_run {
local plat=${1:-${PLAT:-x86_64}} local plat=${1:-${PLAT:-x86_64}}
if [ -z "$DOCKER_TEST_IMAGE" ]; then if [ -z "$DOCKER_TEST_IMAGE" ]; then
if [ "$MB_ML_LIBC" == "musllinux" ]; then if [ "$MB_ML_LIBC" == "musllinux" ]; then
local docker_image="multibuild/alpine3.17_$plat" # PLAT is the same as $plat,
# unless $plat is "aarch64", in which case it becomes "arm64v8"
local docker_image="multibuild/alpine3.17_{PLAT}"
elif [ "$plat" == i686 ]; then elif [ "$plat" == i686 ]; then
local docker_image="matthewbrett/trusty:32" local docker_image="matthewbrett/trusty:32"
else else
# PLAT is the same as $plat,
# unless $plat is "aarch64", in which case it becomes "arm64v8"
local docker_image="multibuild/focal_{PLAT}" local docker_image="multibuild/focal_{PLAT}"
fi fi
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment