Skip to content

Commit

Permalink
Merge pull request Kaggle#427 from Kaggle/rosbo-patch-1
Browse files Browse the repository at this point in the history
Update tag from untested to pretest
  • Loading branch information
rosbo authored Jan 3, 2019
2 parents 38b348e + 38f2f6c commit 15c43b4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ pipeline {
}
}

stage('Push CPU Untested Image') {
stage('Push CPU Pretest Image') {
steps {
slackSend color: 'none', message: "*<${env.BUILD_URL}console|${JOB_NAME} pushing untested image>* ${GIT_COMMIT_SUMMARY}", channel: env.SLACK_CHANNEL
slackSend color: 'none', message: "*<${env.BUILD_URL}console|${JOB_NAME} pushing pretest image>* ${GIT_COMMIT_SUMMARY}", channel: env.SLACK_CHANNEL
sh '''#!/bin/bash
set -exo pipefail
date
./push ci-untested
./push ci-pretest
'''
}
}
Expand Down Expand Up @@ -83,15 +83,15 @@ pipeline {
}
}

stage('Push GPU Untested Image') {
stage('Push GPU Pretest Image') {
agent { label 'ephemeral-linux-gpu' }
steps {
slackSend color: 'none', message: "*<${env.BUILD_URL}console|${JOB_NAME} pushing untested image>* ${GIT_COMMIT_SUMMARY}", channel: env.SLACK_CHANNEL
slackSend color: 'none', message: "*<${env.BUILD_URL}console|${JOB_NAME} pushing pretest image>* ${GIT_COMMIT_SUMMARY}", channel: env.SLACK_CHANNEL
sh '''#!/bin/bash
set -exo pipefail
date
./push --gpu ci-untested
./push --gpu ci-pretest
'''
}
}
Expand Down

0 comments on commit 15c43b4

Please sign in to comment.