We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc89065 commit 2ea5f13Copy full SHA for 2ea5f13
1 file changed
Jenkinsfile
@@ -0,0 +1,12 @@
1
+pipeline {
2
+ agent any
3
+
4
+ stages {
5
+ stage('Build') {
6
+ steps {
7
+ sh 'make'
8
+ archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
9
+ }
10
11
12
+}
0 commit comments