Skip to content

Commit

Permalink
Darwin ARM64 is not yet supported
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Jul 4, 2021
1 parent deb883f commit 418fa56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/scripts/install-docker-compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DOCKER_COMPOSE_VERSION=${DOCKER_COMPOSE_VERSION:?$MSG}
HOME=${HOME:?$MSG}

ARCH=$(uname -m| tr '[:upper:]' '[:lower:]')
if [ "${ARCH}" == "aarch64" ] ; then
if [ "${ARCH}" == "aarch64" ] || [ "${ARCH}" == "arm64" ] ; then
echo "docker-compose distribution for ARM is not supported yet. See https://github.com/docker/compose/issues/6831."
echo "Let's use the installed docker-compose version"
exit 0
Expand Down
3 changes: 3 additions & 0 deletions .ci/scripts/install-terraform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ elif [ "${ARCH}" == "x86_64" ] ; then
ARCH_SUFFIX=amd64
elif [ "${ARCH}" == "i686" ] ; then
ARCH_SUFFIX=386
elif [ "${OS}" == "darwin" ] && [ "${ARCH}" == "arm64" ] ; then
echo 'No terraform binary for darwin on arm64 at the moment.'
exit 0
else
ARCH_SUFFIX=arm
fi
Expand Down

0 comments on commit 418fa56

Please sign in to comment.