From 3111d800b5c4ffbc7487829e6145f1148929ec71 Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Thu, 23 Jan 2020 18:32:32 -0500 Subject: [PATCH] [jenkins] osx-gcc: use a consistent gfortran but what should clang be using? --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 654cb429..ee523db6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -47,7 +47,7 @@ for (int i = 0; i < dockerPlatforms.size(); i++) { /****************** osx builds (on host) */ def osxPlatforms = [ - ["gcc", ['CC=gcc-7', 'CXX=g++-7']], + ["gcc", ['CC=gcc-7', 'CXX=g++-7', 'FC=gfortran-7']], ["clang", ['CC=$BREW/opt/llvm/bin/clang', 'CXX=$BREW/opt/llvm/bin/clang++', 'CXXFLAGS=-I$BREW/opt/llvm/include', 'LDFLAGS=-L$BREW/opt/llvm/lib']] ] for (int i = 0; i < osxPlatforms.size(); i++) {