From 58dac3696d8fa9f390a5824c31f96dee3e9fc871 Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Tue, 6 Jun 2023 10:43:19 -0400 Subject: [PATCH] [jenkins] Move to gcc 12 for osx builds --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 771418cd..0fe6ab35 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,7 +58,7 @@ for (int i = 0; i < dockerPlatforms.size(); i++) { /****************** osx builds (on host) */ def osxPlatforms = [ - ["gcc", ['CC=gcc-11', 'CXX=g++-11', 'FC=gfortran-11']], + ["gcc", ['CC=gcc-12', 'CXX=g++-12', 'FC=gfortran-12']], ["clang", ['CC=$BREW/opt/llvm/bin/clang', 'CXX=$BREW/opt/llvm/bin/clang++', 'FC=gfortran-11', 'CXXFLAGS=-I$BREW/opt/llvm/include', 'LDFLAGS=-L$BREW/opt/llvm/lib']] ] for (int i = 0; i < osxPlatforms.size(); i++) {