-
Notifications
You must be signed in to change notification settings - Fork 9
/
Jenkinsfile.disabled
62 lines (62 loc) · 1.81 KB
/
Jenkinsfile.disabled
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
pipeline {
agent any
options {
buildDiscarder(logRotator(artifactNumToKeepStr: '10'))
}
stages {
stage("init") {
steps {
sh 'git submodule update --init --recursive'
}
}
stage("build") {
steps {
sh './gradlew clean'
sh './gradlew assemble'
}
}
stage("test") {
steps {
sh 'echo skipping'
// sh './gradlew :voodoo:voodoo-main:poet'
// sh './gradlew test -S'
}
}
stage('publish') {
steps {
sh './gradlew publish -S'
}
}
}
post {
failure {
withCredentials([string(credentialsId: 'discord.webhook.url', variable: 'discordWebhookId')]) {
discordSend(
description: "Failed",
footer: "build in ${currentBuild.durationString.replace(' and counting', '')}",
link: env.BUILD_URL,
result: currentBuild.currentResult,
title: JOB_NAME,
webhookURL: discordWebhookId
)
}
}
success {
sh './gradlew writeMavenUrls'
script {
env.URLS = readFile('mavenUrls.txt')
}
withCredentials([string(credentialsId: 'discord.webhook.url', variable: 'discordWebhookId')]) {
discordSend(
description: "Downloads: \n${env.URLS}",
footer: "build in ${currentBuild.durationString.replace(' and counting', '')}",
link: env.BUILD_URL,
result: currentBuild.currentResult,
title: JOB_NAME,
webhookURL: discordWebhookId
)
}
sh './gradlew buildnumberIncrement'
}
}
}