From 70b89a6205d3c4568888c46559d88c642dd34bec Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 24 Mar 2021 07:50:35 +0100 Subject: [PATCH 1/5] Add OSX build to Azure --- azure-pipelines.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 639cb3558..49e53cbda 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -68,4 +68,10 @@ jobs: dir openblas_utest.exe - +- job: OSX_OpenMP + pool: + vmImage: 'macOS-10.15' + steps: + - script: | + make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 + From dbb33f412f7687d047153a9c2dd6bb0a7d2c11de Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 24 Mar 2021 08:30:48 +0100 Subject: [PATCH 2/5] Update azure-pipelines.yml --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 49e53cbda..5040ae697 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -73,5 +73,6 @@ jobs: vmImage: 'macOS-10.15' steps: - script: | - make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 + make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=clang + From e6664ec2c9cbc584faf3f4fe15cfe706767812d2 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 24 Mar 2021 08:41:48 +0100 Subject: [PATCH 3/5] Update azure-pipelines.yml --- azure-pipelines.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5040ae697..2933fa358 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -73,6 +73,9 @@ jobs: vmImage: 'macOS-10.15' steps: - script: | - make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=clang + brew update + brew install gcc@10 + make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=gcc + From 9dc0bfd617f94d5cb54ab52c428843999e8ea98e Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 24 Mar 2021 08:54:30 +0100 Subject: [PATCH 4/5] Update azure-pipelines.yml --- azure-pipelines.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2933fa358..cd3f7943f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -74,8 +74,7 @@ jobs: steps: - script: | brew update - brew install gcc@10 - make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=gcc + make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=gcc-10 From e69b0b177101cd883768820fe639a4fb14466029 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 24 Mar 2021 10:34:24 +0100 Subject: [PATCH 5/5] Update azure-pipelines.yml --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cd3f7943f..fdf184b22 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -74,7 +74,7 @@ jobs: steps: - script: | brew update - make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=gcc-10 + make TARGET=CORE2 DYNAMIC_ARCH=1 USE_OPENMP=1 CC=gcc-10 FC=gfortran-10