forked from eclipse/Xpect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
26 lines (20 loc) · 914 Bytes
/
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
// tell Jenkins how to build projects from this repository
node {
def mvnHome = tool 'M3'
def mvnParams = '--batch-mode --update-snapshots -fae -Dmaven.repo.local=xpect-local-maven-repository -DtestOnly=false'
stage ('compile with Xtext 2.9.2') {
checkout scm
sh "${mvnHome}/bin/mvn -P!tests -Dtarget-platform=eclipse_4_6_3-xtext_2_9_2 ${mvnParams} clean install"
archive 'org.xpect.releng/p2-repository/target/repository/**/*.*'
}
wrap([$class:'Xvnc', useXauthority: true]) {
stage ('test with Xtext 2.9.2') {
sh "${mvnHome}/bin/mvn -P!plugins -P!xtext-examples -Dtarget-platform=eclipse_4_6_3-xtext_2_9_2 ${mvnParams} clean integration-test"
junit '**/TEST-*.xml'
}
stage ('test with Xtext nighly') {
sh "${mvnHome}/bin/mvn -P!plugins -P!xtext-examples -Dtarget-platform=eclipse_4_5_0-xtext_nightly ${mvnParams} clean integration-test"
junit '**/TEST-*.xml'
}
}
}