Skip to content

Commit 01f58b7

Browse files
committed
ci: use the Sequoia bottle tag for the macOS x86_64 build as well
Even though an OpenMP bottle is only available for Sonoma on x86_64, it just pulls that when a Sequoia bottle tag is specified, so this should make things more consistent, and hopefully allow it to also work for longer.
1 parent fb81de8 commit 01f58b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/install-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if [ "$1" = "ci" ]; then
44
armloc=$(brew fetch --bottle-tag=arm64_sequoia libomp | grep -i downloaded | grep tar.gz | cut -f2 -d:)
5-
x64loc=$(brew fetch --bottle-tag=sonoma libomp | grep -i downloaded | grep tar.gz | cut -f2 -d:)
5+
x64loc=$(brew fetch --bottle-tag=sequoia libomp | grep -i downloaded | grep tar.gz | cut -f2 -d:)
66
cp $armloc /tmp/libomp-arm64.tar.gz
77
mkdir /tmp/libomp-arm64 || true
88
tar -xzvf /tmp/libomp-arm64.tar.gz -C /tmp/libomp-arm64

0 commit comments

Comments
 (0)