-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
123 lines (99 loc) · 3.8 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env groovy
//inspired by: https://www.christopherrung.com/2017/05/04/slack-build-notifications/
import groovy.json.JsonOutput
def slackNotificationChannel = "tp-commits"
def commit = ""
def author = ""
def modifiedFiles = ""
def notifySlack(text, channel, attachments) {
def slackURL = sh(returnStdout: true, script: 'less /mn/stornext/d9/data/mikolajs/Jenkins_CI/webhook_bifrost.cf').trim()
def payload = JsonOutput.toJson([text: text,
channel: channel,
username: "Jenkins",
attachments: attachments
])
sh "curl -X POST --data-urlencode \'payload=${payload}\' ${slackURL}"
}
def getGitAuthor = {
commit = sh(returnStdout: true, script: 'git rev-parse --short HEAD')
author = sh(returnStdout: true, script: "git --no-pager show -s --format='%an' ${commit}").trim()
author = "`"+author+"`"
commit = "`"+commit.trim()+"`"
}
def getModifiedFiles = {
modifiedFiles = sh(returnStdout: true, script: 'git diff --name-only HEAD HEAD~1 | head -n 10').trim()
}
def uploadSummary(channel,file_name) {
def botToken = sh(returnStdout: true, script: 'less /mn/stornext/d9/data/mikolajs/Jenkins_CI/app_bot_token.cf').trim()
sh "curl -F file=@${file_name} -F \"initial_comment=Full report:\" -F channels=${channel} -H \"Authorization: Bearer ${botToken}\" https://slack.com/api/files.upload"
}
node {
stage('Checkout'){
checkout scm
}
try {
stage("Post to Slack") {
getGitAuthor()
getModifiedFiles()
// create output file with interesting information
sh '''#!/bin/bash -el
module load julia/1.8.5
export JULIA_LOAD_PATH=${JULIA_LOAD_PATH}:${PWD}/tests/modules
export JULIA_LOAD_PATH=${JULIA_LOAD_PATH}:${PWD}/src
rm -fv summary.std.txt
rm -fv summary.out
julia tests/Jenkins.jl > >(tee -a summary.std.txt) 2> >(tee -a summary.std.txt >&2)
'''
def testSummary = sh(returnStdout: true, script:'cat summary.std.txt').trim()
testSummary = testSummary.replace("'","") //remove single quotes for now
testSummary = "```" + testSummary + "```"
notifySlack("", slackNotificationChannel, [
[
title: "${env.JOB_NAME}, build #${env.BUILD_NUMBER}",
text: "Dear ${author}, congratulations your commit ${commit} passes my strict tests gracefully :+1:",
color: "#00ff00",
fields:[
[
title: "Modified Files",
value: "${modifiedFiles}",
short: true
],
[
title: "Test Results",
value: "${testSummary}",
short: false
]
]
]
])
}
} catch(e) {
sh '''#!/bin/bash -el
summarystart=$(grep -n "Test Summary:" summary.std.txt)
tail -n +"${summarystart:0:2}" summary.std.txt >> summary.out
'''
def testSummary = sh(returnStdout: true, script:'less summary.out').trim()
testSummary = testSummary.replace("'","") //remove single quotes for now
testSummary = "```" + testSummary + "```"
notifySlack("", slackNotificationChannel, [
[
title: "${env.JOB_NAME}, build #${env.BUILD_NUMBER}",
text: "Hello ${author} you might want to take a closer look to #${commit} commit.",
color: "#ffd700",
fields:[
[
title: "Modified Files",
value: "${modifiedFiles}",
short: true
],
[
title: "Test Results",
value: "${testSummary}",
short: false
]
]
]
])
uploadSummary(slackNotificationChannel,'summary.std.txt')
}
}