diff --git a/.jenkins/regression_tests.gvy b/.jenkins/regression_tests.gvy index 852bdacb..732538e5 100644 --- a/.jenkins/regression_tests.gvy +++ b/.jenkins/regression_tests.gvy @@ -36,7 +36,8 @@ pipeline { steps { echo " Building SPECFEM " sh """ - cmake -S . -B build_cpu -DCMAKE_BUILD_TYPE=Release + module load boost/1.73.0 + cmake -S . -B build_cpu -DCMAKE_BUILD_TYPE=Release -D BUILD_TESTS=ON cmake3 --build build_cpu """ } @@ -48,7 +49,7 @@ pipeline { sh """ module load cudatoolkit/11.7 module load boost/1.73.0 - cmake -S . -B build_gpu -DCMAKE_BUILD_TYPE=Release -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_AMPERE80=ON -DKokkos_ENABLE_OPENMP=ON + cmake -S . -B build_gpu -DCMAKE_BUILD_TYPE=Release -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_AMPERE80=ON -DKokkos_ENABLE_OPENMP=ON -D BUILD_TESTS=ON cmake3 --build build_gpu """ } @@ -146,7 +147,7 @@ pipeline { stage (' Checkout main branch '){ steps { checkout([$class: 'GitSCM', - branches: [[name: 'code-along']], + branches: [[name: 'main']], extensions: [lfs()], userRemoteConfigs: [[url: 'https://github.com/PrincetonUniversity/specfempp']]]) } @@ -168,7 +169,8 @@ pipeline { steps { echo " Building SPECFEM " sh """ - cmake -S . -B build_cpu -DCMAKE_BUILD_TYPE=Release + module load boost/1.73.0 + cmake -S . -B build_cpu -DCMAKE_BUILD_TYPE=Release -D BUILD_TESTS=ON cmake3 --build build_cpu """ } @@ -180,7 +182,7 @@ pipeline { sh """ module load cudatoolkit/11.7 module load boost/1.73.0 - cmake -S . -B build_gpu -DCMAKE_BUILD_TYPE=Release -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_AMPERE80=ON -DKokkos_ENABLE_OPENMP=ON + cmake -S . -B build_gpu -DCMAKE_BUILD_TYPE=Release -DKokkos_ENABLE_CUDA=ON -DKokkos_ARCH_AMPERE80=ON -DKokkos_ENABLE_OPENMP=ON -D BUILD_TESTS=ON cmake3 --build build_gpu """ }