Skip to content

Commit 2ea5f13

Browse files
authored
Create Jenkinsfile
1 parent bc89065 commit 2ea5f13

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)