Allow CI skipping

This commit is contained in:
Telesphoreo 2023-03-16 00:21:18 -05:00
parent f3b3ef9f03
commit 8274f52923

27
Jenkinsfile vendored
View File

@ -6,6 +6,7 @@ pipeline {
stages { stages {
stage('applyPatches') { stage('applyPatches') {
steps { steps {
scmSkip(deleteBuild: true)
withGradle { withGradle {
sh './gradlew applyPatches --no-daemon --refresh-dependencies' sh './gradlew applyPatches --no-daemon --refresh-dependencies'
} }
@ -30,19 +31,19 @@ pipeline {
branch "1.18.2" branch "1.18.2"
} }
steps { steps {
script { script {
try { try {
withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) { withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle { withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon" sh "./gradlew :Scissors-API:publish --no-daemon"
} }
} }
true true
} catch (_) { } catch (_) {
false false
} }
} }
} }
} }
} }
post { post {