-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
105 lines (79 loc) · 4.47 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
node {
try
{
// Mark the code checkout 'stage'....
stage ('Checkout'){
checkout scm
sh 'git submodule update --init'
}
stage ('Clean'){
withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {
// Run the maven build
sh "mvn clean -PWith-IDE -Dtycho.mode=maven -fn"
}}
stage ('Compile core'){
withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {
// Run the maven build
sh "mvn compile"
}}
stage ('Install IDE'){
withMaven(mavenLocalRepo: '.repository', mavenSettingsFilePath: "${env.MVN_SETTINGS_PATH}") {
// Run the maven build
sh "mvn install -PWith-IDE -Pall-platforms -P!linux64 -DexternalTestsPath=$OVERTURE_EXTERNAL_TEST_ROOT -P!ui-tests -Pforce-download-externals -Pcodesigning"
step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
step([$class: 'JacocoPublisher', exclusionPattern: '**/org/overture/ast/analysis/**/*.*, **/org/overture/ast/expressions/**/*.*, **/org/overture/ast/modules/**/*.*, **/org/overture/ast/node/**/*.*,**/org/overture/ast/patterns/**/*.*, **/org/overture/ast/statements/**/*.*, **/org/overture/ast/types/**/*.*, **/org/overture/codegen/ir/**/*, **/org/overture/ide/**/*'])
step([$class: 'TasksPublisher', canComputeNew: false, defaultEncoding: '', excludePattern: '', healthy: '', high: 'FIXME', ignoreCase: true, low: '', normal: 'TODO', pattern: '', unHealthy: ''])
}}
stage ('Publish Artifactory'){
if (env.BRANCH_NAME.endsWith('development')) {
def server = Artifactory.server "-844406945@1404457436085"
def buildInfo = Artifactory.newBuildInfo()
buildInfo.env.capture = true
buildInfo.env.filter.addExclude("org/overturetool/vdm2c/ide/**")
def rtMaven = Artifactory.newMavenBuild()
rtMaven.tool = "Maven 3.1.1" // Tool name from Jenkins configuration
rtMaven.opts = "-Xmx1024m -XX:MaxPermSize=256M"
def repo = 'vdm2c'
if (env.BRANCH_NAME == 'vpb/development')
{
repo = 'vdm2c-vpb'
}
else if(env.BRANCH_NAME == 'pvj/development')
{
repo = 'vdm2c-pvj'
}
rtMaven.deployer releaseRepo:repo, snapshotRepo:repo, server: server
rtMaven.run pom: 'pom.xml', goals: 'install', buildInfo: buildInfo
//get rid of old snapshots only keep then for a short amount of time
buildInfo.retention maxBuilds: 5, maxDays: 7, deleteBuildArtifacts: true
// Publish build info.
server.publishBuildInfo buildInfo
}
}
stage ('Deploy'){
if (env.BRANCH_NAME.endsWith('development')) {
sh "echo branch is now ${env.BRANCH_NAME}"
DEST = sh script: "echo /home/jenkins/web/vdm2c/${env.BRANCH_NAME}/Build-${BUILD_NUMBER}_`date +%Y-%m-%d_%H-%M`", returnStdout:true
REMOTE = "jenkins@overture.au.dk"
sh "echo The remote dir will be: ${DEST}"
sh "ssh ${REMOTE} mkdir -p ${DEST}"
sh "scp -r ide/repository/target/repository/* ${REMOTE}:${DEST}"
sh "ssh ${REMOTE} /home/jenkins/update-latest.sh web/vdm2c/${env.BRANCH_NAME}"
}
}
} catch (any) {
currentBuild.result = 'FAILURE'
throw any //rethrow exception to prevent the build from proceeding
} finally {
stage ('Clean up workspace'){
step([$class: 'WsCleanup'])
}
stage('Reporting'){
// Notify on build failure using the Email-ext plugin
emailext(body: '${DEFAULT_CONTENT}', mimeType: 'text/html',
replyTo: '$DEFAULT_REPLYTO', subject: '${DEFAULT_SUBJECT}',
to: emailextrecipients([[$class: 'CulpritsRecipientProvider'],
[$class: 'RequesterRecipientProvider']]))
}}
}