Skip to content

Commit 6c8f1b7

Browse files
committed
Trying to add a build process
1 parent 61cec4a commit 6c8f1b7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Jenkinsfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pipeline {
2+
agent {
3+
docker {
4+
image 'openjdk:11'
5+
args '-v /tmp:/tmp'
6+
reuseNode true
7+
}
8+
}
9+
10+
stages {
11+
stage ("build") {
12+
steps {
13+
sh './gradlew clean build'
14+
}
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)