File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,11 @@ pipeline {
15
15
sh 'printenv | sort'
16
16
}
17
17
}
18
- stage('Build docker images') {
19
- steps {
20
- stage('cpu') { steps { sh 'ci/build-docker-images.sh cpu' } }
21
- stage('gpu') { steps { sh 'ci/build-docker-images.sh gpu' } }
22
- stage('gpu_torch') { steps { sh 'ci/build-docker-images.sh gpu_torch' } }
23
- // stage('gpu_tf') { steps { sh 'ci/build-docker-images.sh gpu_tf' } }
24
- // stage('gpu_tensorrt') { steps { sh 'ci/build-docker-images.sh gpu_tensorrt' } }
25
- }
26
- }
18
+ stage('Build docker cpu image') { steps { sh 'ci/build-docker-images.sh cpu' } }
19
+ stage('Build docker gpu image') { steps { sh 'ci/build-docker-images.sh gpu' } }
20
+ stage('Build docker gpu_torch image') { steps { sh 'ci/build-docker-images.sh gpu_torch' } }
21
+ //stage('Build docker gpu_tf image') { steps { sh 'ci/build-docker-images.sh gpu_tf' } }
22
+ //stage('Build docker gpu_tensorrt image') { steps { sh 'ci/build-docker-images.sh gpu_tensorrt' } }
27
23
stage('Update dockerhub readme') {
28
24
when {
29
25
expression { BRANCH_NAME == "master" }
You can’t perform that action at this time.
0 commit comments