forked from jenkins-infra/account-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
42 lines (39 loc) · 1.05 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
@Library('pipeline-library@pull/784/head') _
pipeline {
agent {
label 'jdk17'
}
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: true
])
}
}
}
}