From 1ccf74243f2840d360bd733996b300db46e103da Mon Sep 17 00:00:00 2001 From: Vincenzo Pellegrini Date: Mon, 6 May 2024 09:03:46 +0200 Subject: [PATCH] Allow ARM64 architecture for macOS runners --- scripts/configure_paths.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/configure_paths.sh b/scripts/configure_paths.sh index 8a8ed2b..9e06ddb 100755 --- a/scripts/configure_paths.sh +++ b/scripts/configure_paths.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [[ ${ARCH} != "X64" ]]; then +if [[ ${ARCH} != "X64" && ! ( ${OS} == "macOS" && ${ARCH} == "ARM64" ) ]]; then echo "::error::Architecture '${ARCH}' is unsupported by build-wrapper" exit 1 fi