From 28c26a09477e7384a02562771696c3c17ee487b1 Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Wed, 9 Oct 2024 09:20:00 -0400 Subject: [PATCH] Update nightly CI from gcc 13.1 to gcc 14.2 and compile using 7 procs --- .jenkins/nightly.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.jenkins/nightly.groovy b/.jenkins/nightly.groovy index 55fc8cebd..1e9e70b64 100644 --- a/.jenkins/nightly.groovy +++ b/.jenkins/nightly.groovy @@ -128,10 +128,10 @@ pipeline { } } } - stage('GCC-13') { + stage('GCC-14') { agent { docker { - image 'gcc:13.1' + image 'gcc:14.2' label 'docker' } } @@ -147,16 +147,16 @@ pipeline { sh 'git rev-parse --short HEAD' } sh 'cmake -S source-kokkos -B build-kokkos -D CMAKE_INSTALL_PREFIX=$PWD/install-kokkos $CMAKE_OPTIONS -D Kokkos_ENABLE_SERIAL=ON' - sh 'cmake --build build-kokkos --parallel 8' + sh 'cmake --build build-kokkos --parallel 7' sh 'cmake --install build-kokkos' sh 'cmake -B build-arborx -D CMAKE_INSTALL_PREFIX=$PWD/install-arborx -D Kokkos_ROOT=$PWD/install-kokkos $CMAKE_OPTIONS -D ARBORX_ENABLE_BENCHMARKS=ON -D ARBORX_ENABLE_TESTS=ON -D ARBORX_ENABLE_EXAMPLES=ON' - sh 'cmake --build build-arborx --parallel 8' + sh 'cmake --build build-arborx --parallel 7' dir('build-arborx') { sh 'ctest $CTEST_OPTIONS' } sh 'cmake --install build-arborx' sh 'cmake -S examples -B build-examples -D ArborX_ROOT=$PWD/install-arborx -D Kokkos_ROOT=$PWD/install-kokkos $CMAKE_OPTIONS' - sh 'cmake --build build-examples --parallel 8' + sh 'cmake --build build-examples --parallel 7' dir('build-examples') { sh 'ctest $CTEST_OPTIONS' }