forked from eclipse-tea/tea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
33 lines (33 loc) · 836 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
27
28
29
30
31
32
33
pipeline {
options {
timeout(time: 15, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr:'5'))
disableConcurrentBuilds(abortPrevious: true)
}
agent any
tools {
maven 'apache-maven-latest'
jdk 'temurin-jdk17-latest'
}
stages {
stage('Build') {
steps {
sh """
set -xe
mvn clean verify
! test -r ./p2
mv sites/org.eclipse.tea.repository/target/repository p2
test -r ./p2/.
"""
}
post {
success {
archiveArtifacts artifacts: 'p2/'
}
always {
recordIssues tool: mavenConsole()
}
}
}
}
}