Scissors/Jenkinsfile

57 lines
1.7 KiB
Groovy

pipeline {
agent any
environment {
GITHUB_BRANCH = "${BRANCH_NAME}"
}
stages {
stage('applyPatches') {
steps {
scmSkip(deleteBuild: true)
withGradle {
sh './gradlew applyPatches --no-daemon --refresh-dependencies'
}
}
}
stage('paperclipJar') {
steps {
withGradle {
sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
}
}
}
stage('test') {
steps {
withGradle {
sh './gradlew test --no-daemon'
}
}
}
stage('publish') {
when {
branch "1.19.4"
}
steps {
script {
try {
withCredentials([usernamePassword(credentialsId: 'scissors-ci', passwordVariable: 'scissorsPassword', usernameVariable: 'scissorsUser')]) {
withGradle {
sh "./gradlew :Scissors-API:publish --no-daemon"
}
}
true
} catch (_) {
false
}
}
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/Scissors-paperclip-*.jar', fingerprint: true
junit 'Scissors-Server/build/test-results/test/*.xml'
junit 'Scissors-API/build/test-results/test/*.xml'
cleanWs()
}
}
}