From f3c696d22e454600727f55087f55dcfa3e2d16bf Mon Sep 17 00:00:00 2001 From: Armen Zambrano G Date: Wed, 8 Sep 2021 15:19:17 -0400 Subject: [PATCH] Script to test wheel on Apple Sillicon --- scripts/build/test_macos_arm64.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/build/test_macos_arm64.sh diff --git a/scripts/build/test_macos_arm64.sh b/scripts/build/test_macos_arm64.sh new file mode 100755 index 00000000..fdfe0be7 --- /dev/null +++ b/scripts/build/test_macos_arm64.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Test macos arm64 wheel packages from Github actions. +# It only makes sense to run this script from an Apple Silicon device +# +# From Github's Actions tab, choose the "Build packages" run and +# look for artifacts at the bottom. Download "packages_macos_arm64" +# and call this script with the path to it +set -euo pipefail +set -x + +url= \ No newline at end of file