We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docker
1 parent 0a53c7d commit 224e581Copy full SHA for 224e581
1 file changed
Jenkinsfile
@@ -412,15 +412,15 @@ pipeline {
412
!skipRemainingStages
413
}
414
415
- agent { label 'linux' }
+ agent { label 'linux && docker' }
416
steps {
417
script {
418
unstash 'MathSetup'
419
def tests = [:]
420
def files = sh(script:"find test/prob/* -type d", returnStdout:true).trim().split('\n')
421
for (f in files.toList().collate(8)) {
422
def names = f.join(" ")
423
- tests["Distribution Tests: ${names}"] = { node {
+ tests["Distribution Tests: ${names}"] = { node ("linux && docker") {
424
docker.image('stanorg/ci:gpu-cpp17').inside {
425
426
sh """
0 commit comments