From 5578ca992f04d3506b128fdfcfed26e638b7ed06 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 16 Mar 2023 12:32:30 -0400 Subject: [PATCH] Jenkins: enable and update arm macos build --- contrib/ci/Jenkinsfile.osx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/ci/Jenkinsfile.osx b/contrib/ci/Jenkinsfile.osx index b2de162d89..bedb1fa13a 100644 --- a/contrib/ci/Jenkinsfile.osx +++ b/contrib/ci/Jenkinsfile.osx @@ -4,7 +4,7 @@ This Jenkins job runs a build on OSX -See https://jenkins.tjhei.info/job/dealii-osx/ for details. +See https://ci.tjhei.info/job/dealii-osx/ for details. */ @@ -64,7 +64,7 @@ pipeline steps { - githubNotify context: 'OSX', description: 'pending...', status: 'PENDING' + githubNotify context: 'Jenkins: OSX', description: 'pending...', status: 'PENDING' sh ''' wget -q -O - https://api.github.com/repos/dealii/dealii/issues/${CHANGE_ID}/labels | grep 'ready to test' || \ { echo "This commit will only be tested when it has the label 'ready to test'. Trigger a rebuild by adding a comment that contains '/rebuild'..."; exit 1; } @@ -74,7 +74,7 @@ pipeline { failure { - githubNotify context: 'OSX', description: 'need ready to test label and /rebuild', status: 'PENDING' + githubNotify context: 'Jenkins: OSX', description: 'need ready to test label and /rebuild', status: 'PENDING' script { currentBuild.result='NOT_BUILT' @@ -99,7 +99,7 @@ pipeline -D DEAL_II_CXX_FLAGS='-Werror' \ -D DEAL_II_EARLY_DEPRECATIONS=ON \ -D CMAKE_BUILD_TYPE=Debug \ - $WORKSPACE/ && make -j 4 + $WORKSPACE/ && make -j 8 make test # quicktests ''' } @@ -113,7 +113,7 @@ pipeline } failure { - githubNotify context: 'OSX', description: 'build failed', status: 'FAILURE' + githubNotify context: 'Jenkins: OSX', description: 'build failed', status: 'FAILURE' } } } @@ -122,7 +122,7 @@ pipeline { steps { - githubNotify context: 'OSX', description: 'OK', status: 'SUCCESS' + githubNotify context: 'Jenkins: OSX', description: 'OK', status: 'SUCCESS' } } } -- 2.39.5