diff options
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 1293357..fe52522 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { options { ansiColor('xterm') } stages { stage('Build') { steps { sh 'bash .scripts.d/20-build.sh' } } - stage('Test') { steps { sh 'bash .scripts.d/30-test.sh' } } + // stage('Test') { steps { sh 'bash .scripts.d/30-test.sh' } } stage('Publish') { environment { DOCKERHUB_TOKEN = credentials('DOCKERHUB_TOKEN') } steps { sh 'bash .scripts.d/40-publish.sh' } |