We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c530959 + ba725df commit 102c7dfCopy full SHA for 102c7df
1 file changed
Jenkinsfile
@@ -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