From ba110b6edb7c40a208f8d5a54d5c35eae3b0d075 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 8 Feb 2022 11:13:01 +0100 Subject: [PATCH] Try a clang/flang build on Mac --- azure-pipelines.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 04ed428de..2a8ba0a79 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -179,6 +179,18 @@ jobs: cmake --build . ctest +- job: OSX_flang + pool: + vmImage: 'macOS-11' + variables: + LD_LIBRARY_PATH: /usr/local/opt/llvm/lib + LIBRARY_PATH: /usr/local/opt/llvm/lib + steps: + - script: | + brew update + brew install llvm flang + make CC=clang FC=flang + - job: OSX_Ifort_Clang pool: vmImage: 'macOS-10.15'