parent
cefc2b9ea1
commit
4793864178
|
@ -26,7 +26,7 @@ pipeline {
|
||||||
dir '.docker'
|
dir '.docker'
|
||||||
label 'linux && docker && cuda'
|
label 'linux && docker && cuda'
|
||||||
//additionalBuildArgs '--build-arg version=1.0.2'
|
//additionalBuildArgs '--build-arg version=1.0.2'
|
||||||
args '--gpus all' //--needed for test only, you can build without GPU
|
//args '--gpus all' //--needed for test only, you can build without GPU
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,6 +57,15 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('test-linux-cuda') {
|
stage('test-linux-cuda') {
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
filename 'Dockerfile'
|
||||||
|
dir '.docker'
|
||||||
|
label 'linux && docker && cuda && cudart'
|
||||||
|
//additionalBuildArgs '--build-arg version=1.0.2'
|
||||||
|
args '--gpus all' //--needed for test only, you can build without GPU
|
||||||
|
}
|
||||||
|
}
|
||||||
environment {
|
environment {
|
||||||
MAVEN = credentials('Internal_Archiva')
|
MAVEN = credentials('Internal_Archiva')
|
||||||
OSSRH = credentials('OSSRH')
|
OSSRH = credentials('OSSRH')
|
||||||
|
|
Loading…
Reference in New Issue