Fixed Jenkinsfile conflict from Jenkinsfile rebase

This commit is contained in:
Jeremy Smitherman 2018-12-26 01:42:34 -06:00
commit 7f60933f3b

15
Jenkinsfile vendored
View File

@ -5,6 +5,7 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
sh '/opt/squish/bin/squish --no-minify' sh '/opt/squish/bin/squish --no-minify'
<<<<<<< HEAD
sh 'ldoc {env.WORKSPACE}' sh 'ldoc {env.WORKSPACE}'
} }
} }
@ -17,5 +18,19 @@ pipeline {
} }
}*/ }*/
=======
sh "ldoc ${env.WORKSPACE}"
}
}
stage('Deploy') {
when {
tag 'release-*'
}
steps {
sh "python3 /opt/hoggit_releaser/releaser.py ${env.WORKSPACE} ${env.TAG_NAME}"
}
}
>>>>>>> feature/Jenkinsfile
} }
} }