-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Jenkinsfile
76 lines (71 loc) · 2.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
#!/usr/bin/env groovy
// Do not rebuild daily if not on the principal branch (e.g. not on PR, not on other branches, not on tags)
String cronPattern = env.BRANCH_IS_PRIMARY ? '@daily' : ''
pipeline {
agent {
// 'docker' is the (legacy) label used on ci.jenkins.io for "Docker Linux AMD64" while 'linux-amd64-docker' is the label used on infra.ci.jenkins.io
label 'docker || linux-amd64-docker'
}
options {
buildDiscarder(logRotator(numToKeepStr: '10'))
skipStagesAfterUnstable()
timestamps()
}
triggers {
cron(cronPattern)
}
stages {
stage('Build') {
environment {
JAVA_HOME = '/opt/jdk-21/'
}
steps {
script {
infra.withArtifactCachingProxy() {
def OPTS = env.MAVEN_SETTINGS ? "-s ${MAVEN_SETTINGS}" : ''
OPTS += env.TAG_NAME ? ' -Dspotless.check.skip=true' : ''
withEnv(["OPTS=${OPTS}"]) {
sh '''
./mvnw -V \
--no-transfer-progress \
${OPTS} \
verify \
checkstyle:checkstyle \
spotbugs:spotbugs \
-Dmaven.test.failure.ignore \
-Dcheckstyle.failOnViolation=false \
-Dspotbugs.failOnError=false
'''
}
}
}
}
post {
always {
discoverGitReferenceBuild referenceJob: 'main'
junit (
allowEmptyResults: false,
testResults: '**/target/surefire-reports/*.xml, **/target/failsafe-reports/*.xml'
)
recordCoverage(tools: [[parser: 'JACOCO', pattern: '**/target/site/**/jacoco.xml', mergeToOneReport: true]], sourceCodeRetention: 'MODIFIED')
recordIssues enabledForFailure: true,
tools: [mavenConsole(), java(), javaDoc()]
recordIssues enabledForFailure: true,
tool: checkStyle(),
qualityGates: [[ threshold: 1, type: 'NEW', unstable: true ]]
recordIssues enabledForFailure: true,
tool: spotBugs(),
qualityGates: [[ threshold: 1, type: 'NEW', unstable: true ]]
}
success {
stash name: 'binary', includes: 'war/target/plugin-health-scoring.jar'
}
}
}
stage('Docker image') {
steps {
buildDockerAndPublishImage('plugin-health-scoring', [dockerfile: 'war/src/main/docker/Dockerfile', unstash: 'binary', targetplatforms: 'linux/amd64,linux/arm64'])
}
}
}
}