Scissors/Jenkinsfile

37 lines
1 KiB
Text
Raw Normal View History

2022-04-04 18:21:20 -04:00
pipeline {
agent any
2022-04-10 17:54:42 -04:00
options {
2022-04-10 17:58:49 -04:00
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
2022-04-10 17:54:42 -04:00
}
2022-04-04 18:21:20 -04:00
stages {
stage('applyPatches') {
2022-04-04 18:21:20 -04:00
steps {
2022-04-07 01:05:56 -04:00
withGradle {
sh './gradlew applyPatches --no-daemon'
}
}
}
stage('paperclipJar') {
steps {
withGradle {
2022-04-19 20:05:57 -04:00
sh './gradlew createReobfPaperclipJar --no-daemon'
2022-04-07 01:05:56 -04:00
}
2022-04-04 18:21:20 -04:00
}
}
2022-04-14 21:32:26 -04:00
stage('test') {
steps {
withGradle {
sh './gradlew test --no-daemon'
}
}
}
2022-04-04 18:21:20 -04:00
}
post {
always {
2022-04-19 20:38:51 -04:00
archiveArtifacts artifacts: 'build/libs/Scissors-paperclip-*.jar', fingerprint: true
2022-04-14 21:32:26 -04:00
junit 'Scissors-Server/build/test-results/test/*.xml'
junit 'Scissors-API/build/test-results/test/*.xml'
2022-04-14 21:40:24 -04:00
cleanWs()
2022-04-04 18:21:20 -04:00
}
}
}