-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
85 lines (75 loc) · 2.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
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
77
78
79
80
81
82
83
84
85
pipeline {
agent any
environment {
GRADLE_ARGS = ''
DISCORD_WEBHOOK = credentials('clientele-discord-webhook')
DISCORD_PING = credentials('clientele-discord-ping')
}
stages {
stage('DiscordNotifyStart') {
when {
expression {
publishingToMaven()
}
not {
changeRequest()
}
}
steps {
script {
discord.sendStarted(currentBuild, DISCORD_WEBHOOK)
}
}
}
stage('Clean') {
when {
expression {
publishingToMaven()
}
not {
changeRequest()
}
}
steps {
cleanWs(patterns: [[pattern: 'build/libs/**', type: 'INCLUDE']])
}
}
stage('Build') {
when {
not {
changeRequest()
}
}
steps {
withCredentials([usernamePassword(credentialsId: 'hundred-media-maven-user', usernameVariable: 'MAVEN_USER', passwordVariable: 'MAVEN_PASSWORD')]) {
withGradle {
sh './gradlew ${GRADLE_ARGS} --refresh-dependencies --continue build'
gradleVersion(this)
}
}
}
}
stage('Publish') {
when {
expression {
publishingToMaven()
}
not {
changeRequest()
}
}
steps {
archiveArtifacts artifacts: 'build/libs/**/*.jar', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true
}
}
}
post {
always {
script {
if (env.CHANGE_ID/* Pull Request ID */ == null && publishingToMaven()) {
discord.sendFinishedAndPingOnSuccess(currentBuild, DISCORD_WEBHOOK, DISCORD_PING)
}
}
}
}
}