From 9cf70757da49ee4e2de877c6054de0daf7c1dde3 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 26 Aug 2022 16:26:18 +0200 Subject: [PATCH] add osx/gcc12 --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1102bf0f5..8236c6cc3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -157,6 +157,14 @@ jobs: brew update make USE_THREADS=0 CC=gcc-10 FC=gfortran-10 +- job: OSX_GCC12 + pool: + vmImage: 'macOS-latest' + steps: + - script: | + brew update + make CC=gcc-12 FC=gfortran-12 + - job: OSX_OpenMP_Clang pool: vmImage: 'macOS-10.15'