Create Jenkinsfile

This commit is contained in:
Sambo Chea 2022-09-03 12:15:53 +07:00 committed by GitHub
parent 9e54f9223b
commit 6c11649db9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
pipeline {
agent any
triggers {
pollSCM '* * * * *'
}
stages {
stage('Build') {
steps {
sh './gradlew assemble'
}
}
stage('BootJar') {
steps {
sh './gradlew bootJar'
}
}
}
}