-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
65 lines (58 loc) · 1.59 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
pipeline {
agent any
environment {
GRADLE_ARGS = ''
DISCORD_WEBHOOK = credentials('libraries-discord-webhook')
}
stages {
stage('DiscordNotifyStart') {
when {
expression {
publishingToMaven()
}
not {
changeRequest()
}
}
steps {
script {
discord.sendStarted(currentBuild, DISCORD_WEBHOOK)
}
}
}
stage('Build') {
steps {
withGradle {
sh './gradlew ${GRADLE_ARGS} --refresh-dependencies --continue build'
gradleVersion(this)
}
}
}
stage('Publish') {
when {
expression {
publishingToMaven()
}
not {
changeRequest()
}
}
steps {
withCredentials([usernamePassword(credentialsId: 'hundred-media-maven-user', usernameVariable: 'MAVEN_USER', passwordVariable: 'MAVEN_PASSWORD')]) {
withGradle {
sh './gradlew ${GRADLE_ARGS} publish'
}
}
}
}
}
post {
always {
script {
if (env.CHANGE_ID/* Pull Request ID */ == null && publishingToMaven()) {
discord.sendFinished(currentBuild, DISCORD_WEBHOOK)
}
}
}
}
}