From 9c3478252a8867f10c4242d6439f4cd72111394a Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Thu, 27 May 2021 06:15:30 +0200 Subject: [PATCH] CI: Add a fedora 34 (gcc 11) check --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 999bc53f..06155041 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ def jobMatrix(String type, List specs) { sh "bash ${jobscript}" } else { def static_analysis = "OFF" - if (selector =~ /^fedora/) { + if (selector =~ /^fedora-32/) { static_analysis = "ON" } def containercmd = "singularity exec -B/shared ${env.SINGULARITY_CONTAINER_ROOT}/fairmq/${os}.${ver}.sif bash -l -c \\\"${ctestcmd} -DRUN_STATIC_ANALYSIS=${static_analysis}\\\"" @@ -80,6 +80,7 @@ pipeline{ script { def builds = jobMatrix('build', [ [os: 'fedora', ver: '32', arch: 'x86_64', compiler: 'gcc-10'], + [os: 'fedora', ver: '34', arch: 'x86_64', compiler: 'gcc-11'], [os: 'macos', ver: '11', arch: 'x86_64', compiler: 'apple-clang-12'], ])