Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,12 @@ jobs:
RANLIB: touch
steps:
- script: |
brew update
brew install llvm flang
make TARGET=NEHALEM CC=/usr/local/opt/llvm/bin/clang FC=/usr/local/opt/flang/bin/flang NO_SHARED=1
wget https://github.com/macports/macports-base/releases/download/v2.12.6/MacPorts-2.12.6-15-Sequoia.pkg
sudo installer -pkg MacPorts-2.12.6-15-Sequoia.pkg -target /
export PATH=$PATH:/opt/local/bin
hash -r
sudo port install llvm-23
make TARGET=NEHALEM CC=clang-23 FC=flang-23 NO_SHARED=1

- job: OSX_OpenMP_Clang
timeoutInMinutes: 100
Expand Down
Loading