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.
1 parent e5c7ebd commit 1c0fa2cCopy full SHA for 1c0fa2c
Jenkinsfile
@@ -120,15 +120,21 @@ pipeline {
120
stage('CPU Diff') {
121
steps {
122
sh '''#!/bin/bash
123
- ./diff
+ set -exo pipefail
124
+
125
+ docker pull gcr.io/kaggle-images/python:${STAGING_TAG}
126
+ ./diff --target gcr.io/kaggle-images/python:${STAGING_TAG}
127
'''
128
}
129
130
stage('GPU Diff') {
131
agent { label 'ephemeral-linux-gpu' }
132
133
- ./diff --gpu
134
135
136
+ docker pull gcr.io/kaggle-private-byod/python:${STAGING_TAG}
137
+ ./diff --gpu --target gcr.io/kaggle-private-byod/python:${STAGING_TAG}
138
139
140
0 commit comments