Skip to content

Commit 4a9a464

Browse files
committed
Adding jenkinsfile
1 parent b112a02 commit 4a9a464

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Jenkinsfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Setup CI Environment') {
5+
steps {
6+
sh 'chmod +x gradlew'
7+
sh './gradlew setupCIWorkspace'
8+
sh './gradlew build'
9+
}
10+
}
11+
stage('Artifact') {
12+
steps {
13+
archiveArtifacts '**/build/libs/*.jar'
14+
}
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)