SnowyGUI/Jenkinsfile

23 lines
490 B
Plaintext
Raw Normal View History

pipeline {
agent any
triggers {
pollSCM('*/10 * * * *')
}
stages {
stage('Build') {
steps {
echo 'Building..'
sh './gradlew build --stacktrace'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
dir('remappedJars') {
archiveArtifacts artifacts:'*.jar', fingerprint: false
}
}
}
}
}