mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-27 07:05:39 +00:00
Update Jenkinsfile
This commit is contained in:
parent
f21a7fb408
commit
b75232882c
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -30,15 +30,21 @@ pipeline {
|
|||||||
branch "1.17.1"
|
branch "1.17.1"
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
withCredentials([usernamePassword(credentialsId: '8150559b-ec1d-41bd-a576-aa668a52c1ba', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
|
script {
|
||||||
withGradle {
|
try {
|
||||||
sh "./gradlew :Scissors-API:publish --no-daemon"
|
withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
|
||||||
}
|
withGradle {
|
||||||
}
|
sh "./gradlew :Scissors-API:publish --no-daemon"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
true
|
||||||
|
} catch (_) {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
} {
|
||||||
post {
|
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
|
||||||
junit 'Scissors-Server/build/test-results/test/*.xml'
|
junit 'Scissors-Server/build/test-results/test/*.xml'
|
||||||
|
Loading…
Reference in New Issue
Block a user