Update Jenkinsfile
ScriptCraft/pipeline/head There was a failure building this commit Details

This commit is contained in:
TheBrokenRail 2020-05-26 10:45:26 -04:00
parent d5dde4e860
commit fb58a0839f
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
}
stage('Build') {
steps {
sh './gradlew build typedoc eslint publish'
sh './gradlew clean build typedoc eslint publish'
}
post {
success {
@ -29,8 +29,8 @@ pipeline {
}
stage('Build Examples') {
steps {
sh 'cd examples/typescript; ./gradlew build'
sh 'cd examples/javascript; ./gradlew build'
sh 'cd examples/typescript; ./gradlew clean build'
sh 'cd examples/javascript; ./gradlew clean build'
}
post {
success {