Create Jenkinsfile
This commit is contained in:
parent
9e54f9223b
commit
6c11649db9
19
Jenkinsfile
vendored
Normal file
19
Jenkinsfile
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
triggers {
|
||||||
|
pollSCM '* * * * *'
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh './gradlew assemble'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('BootJar') {
|
||||||
|
steps {
|
||||||
|
sh './gradlew bootJar'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user