forked from kiali/kiali
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
188 lines (176 loc) · 7.56 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
* The Jenkins job should be configured with the following properties:
*
* - Disable concurrent builds
* - Parameters (all must be trimmed; all are strings):
* - RELEASE_TYPE
* defaultValue: auto
* description: Valid values are: auto, minor, snapshot.0, snapshot.1, edge. When "auto" is
* specified, the type of the release will be determined based on the current date.
* - BACKEND_RELEASING_BRANCH
* defaultValue: refs/heads/master
* description: Branch of the backend to release
* - UI_RELEASING_BRANCH
* defaultValue: refs/heads/master
* description: Branch of the UI to release
* - BACKEND_GITHUB_URI
* defaultValue: [email protected]:kiali/kiali.git
* description: SSH Url of the kiali-backend GitHub repository
* - UI_GITHUB_URI
* defaultValue: [email protected]:kiali/kiali-ui.git
* description: SSH Url of the kiali-ui GitHub repository
* - DOCKER_NAME
* defaultValue: docker.io/kiali/kiali
* description: The name of the Docker repository to push the release
* - QUAY_NAME
* defaultValue: quay.io/kiali/kiali
* description: The name of the Quay repository to push the release
* - QUAY_OPERATOR_NAME
* defaultValue: quay.io/kiali/kiali-operator
* description: The name of the Quay repository to push the operator release
* - BACKEND_PULL_URI
* defaultValue: https://api.github.com/repos/kiali/kiali/pulls
* description: The URL of the GitHub API to use to create pull requests for the back-end (changes to prepare for next version)
* - UI_PULL_URI
* defaultValue: https://api.github.com/repos/kiali/kiali-ui/pulls
* description: The URL of the GitHub API to use to create pull requests for the UI (changes to prepare for next version)
* - NPM_DRY_RUN
* defaultValue: n
* description: Set to "y" if you want to make a "dry run" of the front-end release process
* - SKIP_UI_RELEASE
* defaultValue: n
* description: Set to 'y' if you don't want to release the UI
* - UI_VERSION
* defaultValue: ''
* description: If you are skipping UI release. Specify the UI version to package, or leave
* unset to use the version present in the main Makefile (e.g. leave unset for patch releases)
* - NPM_CONFIG_REGISTRY
* defaultValue: ''
* description: Registry to use for fetching packages. This is not used for publishing releases.
* Do not include the trailing slash.
*/
node('kiali-build') {
def (backendForkUri, uiForkUri) = ['[email protected]:kiali-bot/kiali.git', '[email protected]:kiali-bot/kiali-ui.git']
def (backendDir, uiDir) = ['src/github.com/kiali/kiali', 'src/github.com/kiali/kiali-ui']
def (backendMakefile, uiMakefile) = ['deploy/jenkins-ci/Makefile', 'Makefile.jenkins']
def buildUi = params.SKIP_UI_RELEASE != "y"
def dockerTag = ""
def quayTag = ""
try {
cleanWs()
stage('Checkout code') {
checkout([
$class: 'GitSCM',
branches: [[name: params.BACKEND_RELEASING_BRANCH]],
doGenerateSubmoduleConfigurations: false,
extensions: [
[$class: 'RelativeTargetDirectory', relativeTargetDir: backendDir]
],
submoduleCfg: [],
userRemoteConfigs: [[
credentialsId: 'kiali-bot-gh-ssh',
url: params.BACKEND_GITHUB_URI]]
])
if ( buildUi ) {
checkout([
$class: 'GitSCM',
branches: [[name: params.UI_RELEASING_BRANCH]],
doGenerateSubmoduleConfigurations: false,
extensions: [
[$class: 'RelativeTargetDirectory', relativeTargetDir: uiDir]
],
submoduleCfg: [],
userRemoteConfigs: [[
credentialsId: 'kiali-bot-gh-ssh',
url: params.UI_GITHUB_URI]]
])
sh "cd ${uiDir}; git config user.email '[email protected]'"
sh "cd ${uiDir}; git config user.name 'kiali-bot'"
}
sh "cd ${backendDir}; git config user.email '[email protected]'"
sh "cd ${backendDir}; git config user.name 'kiali-bot'"
}
// Determine release type if "auto" was specified
def releaseType = "${params.RELEASE_TYPE}"
if ( releaseType == "auto" ) {
releaseType = sh(
returnStdout: true,
script: "${backendDir}/deploy/jenkins-ci/bin/determine-release-type.sh").trim()
}
echo "Resolved release type: ${releaseType}"
withEnv(["PATH+TOOLS=${env.WORKSPACE}/${backendDir}/deploy/jenkins-ci/bin",
"GOPATH=${env.WORKSPACE}",
"BACKEND_FORK_URI=${backendForkUri}",
"UI_FORK_URI=${uiForkUri}",
"RELEASE_TYPE=${releaseType}"
]) {
parallel backend: {
withEnv(["GOPATH=${env.WORKSPACE}"]) {
stage('Build backend') {
sh "make -f ${backendMakefile} -C ${backendDir} backend-build-release"
}
stage('Test backend') {
sh "make -f ${backendMakefile} -C ${backendDir} backend-test"
}
}
}, ui: {
stage('Build UI') {
if ( buildUi ) {
sh "make -f ${uiMakefile} -C ${uiDir} ui-fix-version ui-build"
}
}
stage('Test UI') {
if ( buildUi ) {
sh "make -f ${uiMakefile} -C ${uiDir} ui-test"
}
}
},
failFast: true
stage('Release kiali-ui to NPM') {
if ( buildUi ) {
withCredentials([string(credentialsId: 'kiali-npm', variable: 'NPM_TOKEN')]) {
sh "make -f ${uiMakefile} -C ${uiDir} ui-npm-publish"
}
}
}
stage('Create release cut in front-end repo') {
if ( buildUi ) {
withCredentials([string(credentialsId: 'kiali-bot-gh-token', variable: 'GH_TOKEN')]) {
sshagent(['kiali-bot-gh-ssh']) {
sh "make -f ${uiMakefile} -C ${uiDir} ui-push-version-tag ui-prepare-next-version"
}
}
}
}
stage('Release Kiali to Container Repositories') {
withCredentials([usernamePassword(credentialsId: 'kiali-docker', passwordVariable: 'DOCKER_PASSWORD', usernameVariable: 'DOCKER_USER'), usernamePassword(credentialsId: 'kiali-quay', passwordVariable: 'QUAY_PASSWORD', usernameVariable: 'QUAY_USER')]) {
sh "make -f ${backendMakefile} -C ${backendDir} backend-push-docker"
dockerTag = sh(returnStdout: true, script: "sed -rn 's/^VERSION \\?= v(.*)/v\\1/p' ${backendDir}/Makefile").trim()
quayTag = sh(returnStdout: true, script: "sed -rn 's/^VERSION \\?= v(.*)/v\\1/p' ${backendDir}/Makefile").trim()
}
}
stage('Create release cut in back-end repo') {
withCredentials([string(credentialsId: 'kiali-bot-gh-token', variable: 'GH_TOKEN')]) {
sshagent(['kiali-bot-gh-ssh']) {
sh "make -f ${backendMakefile} -C ${backendDir} backend-push-version-tag backend-prepare-next-version"
}
}
}
stage('Post Msg Bus Notification') {
if ( releaseType == "minor" ) {
build(job: 'kiali-release-notifier',
parameters: [
[$class: 'StringParameterValue', value: 'minor', name: 'RELEASE_TYPE'],
[$class: 'StringParameterValue', value: "${params.DOCKER_NAME}", name: 'DOCKER_NAME'],
[$class: 'StringParameterValue', value: "${params.QUAY_NAME}", name: 'QUAY_NAME'],
[$class: 'StringParameterValue', value: dockerTag, name: 'DOCKER_TAG'],
[$class: 'StringParameterValue', value: quayTag, name: 'QUAY_TAG']
], wait: false
)
}
}
}
} finally {
cleanWs()
}
}