Skip to content

Commit

Permalink
Try out new jenkins with updated cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBronder committed Nov 11, 2024
1 parent c5ddf3c commit 36043c4
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pipeline {
stage("Clang-format") {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -122,7 +122,7 @@ pipeline {
stage('Linting & Doc checks') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -156,7 +156,7 @@ pipeline {
stage('Verify changes') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -190,7 +190,7 @@ pipeline {
}
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand All @@ -209,7 +209,7 @@ pipeline {
stage('Run changed unit tests') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
args '--cap-add SYS_PTRACE'
}
Expand Down Expand Up @@ -247,7 +247,7 @@ pipeline {
stage('All Unit Tests') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
args '--cap-add SYS_PTRACE'
}
Expand Down Expand Up @@ -277,7 +277,7 @@ pipeline {
stage('OpenCL GPU tests') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'v100'
args '--gpus 1'
}
Expand Down Expand Up @@ -309,7 +309,7 @@ pipeline {
stage('MPI tests') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand All @@ -331,7 +331,7 @@ pipeline {
stage('Expressions test') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -368,7 +368,7 @@ pipeline {
stage('Threading tests') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -405,7 +405,7 @@ pipeline {
}
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down Expand Up @@ -440,7 +440,7 @@ pipeline {
def names = f.join(" ")
tests["Distribution Tests: ${names}"] = { node ("linux && docker") {
deleteDir()
docker.image('stanorg/ci:gpu-cpp17').inside {
docker.image('stanorg/ci:gpu-cmake3.30.5').inside {
catchError {
unstash 'MathSetup'
sh """
Expand Down Expand Up @@ -494,7 +494,7 @@ pipeline {
stage('Upload doxygen') {
agent {
docker {
image 'stanorg/ci:gpu-cpp17'
image 'stanorg/ci:gpu-cmake3.30.5'
label 'linux'
}
}
Expand Down

0 comments on commit 36043c4

Please sign in to comment.