forked from folio-org/platform-complete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
172 lines (153 loc) · 5.41 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
@Library ('folio_jenkins_shared_libs') _
pipeline {
environment {
folioPlatform = 'platform-complete'
folioHostname = "${env.folioPlatform}-${env.CHANGE_ID}-${env.BUILD_NUMBER}"
ec2Group = "platform_complete_${env.CHANGE_ID}_${env.BUILD_NUMBER}"
npmConfig = 'jenkins-npm-folio'
sshKeyId = '11657186-f4d4-4099-ab72-2a32e023cced'
folioRegistry = 'http://folio-registry.aws.indexdata.com'
releaseOnly = 'true'
okapiUrl = "http://${env.folioHostname}.aws.indexdata.com:9130"
folioUrl = "http://${env.folioHostname}.aws.indexdata.com"
projUrl = "https://github.com/folio-org/${env.folioPlatform}"
tenant = 'diku'
}
options {
timeout(60)
buildDiscarder(logRotator(numToKeepStr: '30'))
}
agent {
node {
label 'jenkins-slave-all'
}
}
stages {
stage('Setup') {
steps {
sendNotifications 'STARTED'
script {
currentBuild.displayName = "#${env.BUILD_NUMBER}-${env.JOB_BASE_NAME}"
// These two variable are set by Github Branch Source plugin
echo "Origin branch: $env.CHANGE_BRANCH"
echo "Target branch: $env.CHANGE_TARGET"
def lastCommit = sh(returnStatus: true,
script: "git log -1 | grep '.*\\[CI SKIP\\].*'")
if (lastCommit == 0) {
echo "CI SKIP detected. Aborting build"
env.skipBuild = 'true'
}
}
}
}
stage('Do Build') {
when {
expression {
env.skipBuild != 'true'
}
}
stages {
stage('Build Stripes Platform') {
when {
not {
branch 'master'
}
}
steps {
echo "Okapi URL: ${env.okapiUrl}"
echo "Tenant: ${env.tenant}"
buildStripesPlatform(env.okapiUrl,env.tenant)
}
}
stage('Check Platform Dependencies') {
when {
not {
branch 'master'
}
}
steps {
script {
echo "Adding additional modules to stripes-install.json"
sh 'mv stripes-install.json stripes-install-pre.json'
sh 'jq -s \'.[0]=([.[]]|flatten)|.[0]\' stripes-install-pre.json install-extras.json > stripes-install.json'
def stripesInstallJson = readFile('./stripes-install.json')
platformDepCheck(env.tenant,stripesInstallJson)
echo 'Generating backend dependency list to okapi-install.json'
sh 'jq \'map(select(.id | test(\"mod-\"; \"i\")))\' install.json > okapi-install.json'
sh 'cat okapi-install.json'
}
// archive install.json
sh 'mkdir -p ci'
sh 'cp install.json ci'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false,
keepAll: true, reportDir: 'ci',
reportFiles: 'install.json',
reportName: "install.json",
reportTitles: "install.json"])
}
}
stage('Build FOLIO Instance') {
when {
changeRequest()
}
steps {
// build FOLIO instance
buildPlatformInstance(env.ec2Group,env.folioHostname,env.tenant)
script {
def pr_comment = pullRequest.comment("Instance available at $env.folioUrl")
}
}
}
stage('Publish NPM Package') {
when {
buildingTag()
}
steps {
withCredentials([string(credentialsId: 'jenkins-npm-folioci',variable: 'NPM_TOKEN')]) {
withNPM(npmrcConfig: env.npmConfig) {
// clean up generated artifacts before publishing
sh 'rm -rf ci artifacts output bundle node_modules ModuleDescriptors'
// don't include these in package
sh 'rm -rf yarn.lock install.json stripes-install.json okapi-install.json'
sh 'npm publish'
}
}
}
}
stage('Update Branch Install Artifacts') {
// Update branch with install artifacts
when {
changeRequest()
}
steps {
script {
def installFiles = ['stripes-install.json',
'okapi-install.json',
'install.json',
'yarn.lock']
sh "git fetch --no-tags ${env.projUrl} " +
"+refs/heads/${env.CHANGE_BRANCH}:refs/remotes/origin/${env.CHANGE_BRANCH}"
sh "git checkout -b ${env.CHANGE_BRANCH} origin/${env.CHANGE_BRANCH}"
for (int i = 0; i < installFiles.size(); i++) {
sh "git add ${env.WORKSPACE}/${installFiles[i]}"
}
commitStatus = sh(returnStatus: true,
script: 'git commit -m "[CI SKIP] Updating install files on branch"')
if (commitStatus == 0) {
sshGitPush(origin: env.folioPlatform, branch: env.CHANGE_BRANCH)
}
else {
echo "No new changes. No push to git origin needed"
}
}
}
}
} // end 'do build' stage
} // end inner stages
} // end outter stages
post {
always {
sendNotifications currentBuild.result
}
}
}