SnowyGUI/Jenkinsfile

32 lines
874 B
Plaintext
Raw Normal View History

pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '48', artifactNumToKeepStr: '96'))
timeout(time: 12, unit: 'MINUTES')
}
triggers {
pollSCM('*/10 * * * *')
}
stages {
stage('Build') {
steps {
echo 'Cleaning...'
sh './gradlew clean'
echo 'Building..'
sh './gradlew build --stacktrace --refresh-dependencies'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
dir('remappedJars') {
zip zipFile: './UnoptimizedJars.zip', archive: true, glob: '*.jar'
}
dir('shrinkedJars') {
archiveArtifacts artifacts:'*.jar', fingerprint: false
}
}
}
}
}