-
Notifications
You must be signed in to change notification settings - Fork 71
/
Jenkinsfile
121 lines (108 loc) · 3.67 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
pipeline {
agent {
label 'slave'
}
options {
ansiColor('xterm')
timeout(time: 1, unit: 'HOURS')
timestamps()
}
stages {
stage('check-gh-trust') {
steps {
checkGitHubAccess()
}
}
stage('install-dependencies') {
steps {
sh 'make vendor'
}
}
stage('test') {
steps {
sh 'make test'
}
}
stage('octocatalog-diff') {
steps {
// Fetch in the master branch so that octocatalog-diff can diff against
// it. Jenkins by default only clones in branches that are needed and
// doesn't add any others.
//
// See https://github.com/allegro/axion-release-plugin/issues/195 and
// https://medium.com/rocket-travel-engineering/running-advanced-git-commands-in-a-declarative-multibranch-jenkinsfile-e82b075dbc53
// for example
sh 'git config --add remote.origin.fetch +refs/heads/master:refs/remotes/origin/master'
sh 'git fetch --no-tags'
script {
// This should only run for pull requests, so that it is able to post
// change/failure comments on the review
if (env.CHANGE_ID) {
// Unfortunately both the output and the status code cannot be
// saved at the same time (thanks jenkins, see
// https://issues.jenkins-ci.org/browse/JENKINS-44930), so the
// output is saved to a file and then used soon after
def status = sh returnStatus: true, script: './bin/octocatalog-diff > all_diffs_output.md'
def output = readFile('all_diffs_output.md').trim()
// GitHub has a max comment length of 65536, so create a gist and
// link to that if necessary
if (output.length() > 65536) {
// Get the first 3 lines from the output and still include them
// in the comment as a kind of summary
def summary = output.split('\n', 4)[0..2].join('\n')
def url = createGist('octocatalog-diff-results.md', output, env.BUILD_URL)
output = summary + '\n**WARNING: Output is too long for a comment, posted to a gist instead**: ' + url
}
// Add a link to Jenkins in the comment so it's easy to get back to
// the full build and it's clear which build a comment goes with
pullRequestComment = output + "\n\n[Jenkins](${env.BUILD_URL})"
pullRequest.comment(pullRequestComment)
if (status != 0) {
currentBuild.result = 'FAILURE'
}
}
}
}
}
stage('update-prod') {
when {
branch 'master'
}
agent {
label 'deploy'
}
steps {
sh '''
kinit -t /opt/jenkins/deploy/ocfdeploy.keytab ocfdeploy
ssh ocfdeploy@puppet 'sudo /opt/puppetlabs/scripts/update-prod'
'''
}
}
// This stage is positioned after the one to update prod so it does not
// block updates deploying until it's been tested further
stage('octocatalog-diff-master') {
when {
branch 'master'
}
steps {
script {
// This should always pass since it's comparing master against
// itself. If it does not pass, this indicates something wrong with
// the octocatalog-diff test setup (like a dummy secret that needs
// adding), some transient failure (inability to contact puppetdb for
// instance), or catalog compilation issues
sh 'make all_diffs'
}
}
}
}
post {
failure {
emailNotification()
}
always {
ircNotification()
}
}
}
// vim: ft=groovy