forked from eclipse-tea/tea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
45 lines (45 loc) · 1.49 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
pipeline {
options {
timeout(time: 15, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr:'5'))
disableConcurrentBuilds(abortPrevious: true)
}
agent any
tools {
maven 'apache-maven-3.9.9'
jdk 'temurin-jdk17-latest'
}
stages {
stage('Build') {
steps {
sh '''
set -xeu
withOfficialSuffix=
if [[ ${TAG_NAME-} == v* ]] \
&& [[ ${JOB_NAME-} == "continuous/${TAG_NAME-}" ]] \
&& [[ $(git rev-parse refs/tags/${TAG_NAME-}) == "$(git rev-parse HEAD)" ]] \
; then
withOfficialSuffix='-DunofficialSuffix='
elif [[ ${BRANCH_NAME-} == master ]] \
&& [[ ${JOB_NAME-} == "continuous/${BRANCH_NAME-}" ]] \
&& [[ $(git rev-parse refs/remotes/origin/${BRANCH_NAME-}) == "$(git rev-parse HEAD)" ]] \
; then
withOfficialSuffix='-DunofficialSuffix='
fi
mvn -B clean verify ${withOfficialSuffix}
! test -r ./p2
mv sites/org.eclipse.tea.repository/target/repository p2
test -r ./p2/.
'''
}
post {
success {
archiveArtifacts artifacts: 'p2/'
}
always {
recordIssues tool: mavenConsole()
}
}
}
}
}