-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathJenkinsfile
44 lines (42 loc) · 1.16 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
pipeline {
environment {
JAVA_HOME = '/opt/jdk-17'
}
agent {
// infra.ci build on amd64 to be compliant with selenium
label 'jdk17 || linux-amd64-docker '
}
options {
disableConcurrentBuilds(abortPrevious: true)
}
stages {
stage('Build') {
steps {
sh './gradlew build -x test -x integrationTest'
}
}
stage('Test') {
steps {
sh './gradlew check'
}
post {
always {
junit 'build/test-results/**/TEST-*.xml'
}
unsuccessful {
archiveArtifacts allowEmptyArchive: true, artifacts: 'errorScreenshots/*.jpg'
}
}
}
stage('Docker image') {
steps {
buildDockerAndPublishImage('account-app', [
rebuildImageOnPeriodicJob: false,
automaticSemanticVersioning: true,
targetplatforms: 'linux/amd64,linux/arm64',
disablePublication: !infra.isInfra()
])
}
}
}
}