From d8c11e19ff31d012ee81028f435e1929aa37444e Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sun, 28 Mar 2021 18:56:14 +0200 Subject: [PATCH] add osx/gcc build without multithreading support --- azure-pipelines.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d3c978a27..ffe86e413 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -75,7 +75,15 @@ jobs: - script: | brew update make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 INTERFACE64=1 CC=gcc-10 FC=gfortran-10 - + +- job: OSX_GCC_Nothreads + pool: + vmImage: 'macOS-10.15' + steps: + - script: | + brew update + make USE_THREADS=0 CC=gcc-10 FC=gfortran-10 + - job: OSX_OpenMP_Clang pool: vmImage: 'macOS-10.15'