Skip to content

Commit

Permalink
Allow ARM64 architecture for macOS runners
Browse files Browse the repository at this point in the history
  • Loading branch information
friedbyalice committed May 6, 2024
1 parent 8afd132 commit 1ccf742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/configure_paths.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1ccf742

Please sign in to comment.