Skip to content

Commit

Permalink
test.yml fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MFraters committed May 8, 2024
1 parent 7e00c39 commit 8e5ddd2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,11 @@ jobs:
echo "3"
ls /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/libexec
echo "4"
sudo xcode-select --switch /Applications/Xcode_13.2.1.app
if[${{ matrix.build_type }} == "macos-13" ]; then
sudo xcode-select --switch /Applications/Xcode_15.0.1.app
else
sudo xcode-select --switch /Applications/Xcode_13.2.1.app
fi
fi
shell: bash

Expand Down Expand Up @@ -230,7 +234,11 @@ jobs:
elif [ "$RUNNER_OS" == "macOS" ]; then
sudo brew install open-mpi || true
echo "4"
sudo xcode-select --switch /Applications/Xcode_13.2.1.app
if[${{ matrix.build_type }} == "macos-13" ]; then
sudo xcode-select --switch /Applications/Xcode_15.0.1.app
else
sudo xcode-select --switch /Applications/Xcode_13.2.1.app
fi
else
echo "$RUNNER_OS not supported"
exit 1
Expand Down

0 comments on commit 8e5ddd2

Please sign in to comment.