Skip to content

Commit f692959

Browse files
authored
Creating a jenkins pipeline file
1 parent bdba05e commit f692959

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Jenkinsfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pipeline {
2+
agent any
3+
tools {
4+
maven 'Maven 3.3.9'
5+
jdk 'jdk8'
6+
}
7+
stages {
8+
stage('Build') {
9+
steps {
10+
git(url: "https://github.com/epics-base/epicsCoreJava.git")
11+
sh 'mvn clean install'
12+
}
13+
post {
14+
always {
15+
junit 'target/surefire-reports/**/*.xml'
16+
}
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)