forked from OpenCubicChunks/CubicChunks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
74 lines (70 loc) · 2.19 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
String getDiscordMessage() {
def msg = "**Status:** " + currentBuild.currentResult.toLowerCase() + "\n**Branch:** ${BRANCH_NAME}\n**Changes:**"
if (!currentBuild.changeSets.isEmpty()) {
currentBuild.changeSets.first().getLogs().any {
def line = "\n- `" + it.getCommitId().substring(0, 8) + "` *" + it.getComment().split("\n")[0].replaceAll('(?<!\\\\)([_*~`])', '\\\\$1') + "*"
if (msg.length() + line.length() <= 1500) {
msg += line
return
} else {
return true
}
}
} else {
msg += "\n- no changes"
}
msg += "\n**Artifacts:**"
currentBuild.rawBuild.getArtifacts().any {
def line = "\n- [" + it.getDisplayPath() + "](" + env.BUILD_URL + "artifact/" + it.getHref() + ")"
if (msg.length() + line.length() <= 2000) {
msg += line
return
} else {
return true
}
}
return msg
}
pipeline {
agent any
tools {
git "Default"
jdk "jdk8"
}
stages {
stage("Build") {
steps {
sh "./gradlew build -x test"
}
post {
success {
archiveArtifacts artifacts: "build/libs/*.jar", fingerprint: true
}
}
}
stage("Test") {
steps {
sh "./gradlew test"
}
post {
success {
junit "**/build/test-results/**/*.xml"
}
}
}
}
post {
always {
sh "./gradlew --stop"
deleteDir()
withCredentials([string(credentialsId: "cubicchunks_discord_webhook", variable: "discordWebhook")]) {
discordSend thumbnail: "https://cloud.daporkchop.net/minecraft/CubicChunks.png",
result: currentBuild.currentResult,
description: getDiscordMessage(),
link: env.BUILD_URL,
title: "CubicChunks/${BRANCH_NAME} #${BUILD_NUMBER}",
webhookURL: "${discordWebhook}"
}
}
}
}