Skip to content

Commit 102c7df

Browse files
authored
Merge pull request #37 from epics-base/jenkins-build
Jenkins build
2 parents c530959 + ba725df commit 102c7df

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Jenkinsfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
pipeline {
2+
agent any
3+
4+
environment{
5+
MAVEN_OPTS="-Xmx2048m -Xms1024M -Xss128M -XX:-UseGCOverheadLimit"
6+
}
7+
8+
stages {
9+
stage('Build') {
10+
steps {
11+
git(url: "https://github.com/epics-base/epicsCoreJava.git")
12+
sh 'git submodule update --recursive --remote'
13+
sh 'mvn clean install'
14+
}
15+
}
16+
}
17+
post {
18+
always {
19+
archiveArtifacts artifacts: '**/*.jar', fingerprint: true
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)