-
Notifications
You must be signed in to change notification settings - Fork 254
/
Jenkinsfile
278 lines (248 loc) · 7.98 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
pipeline {
agent any
triggers { cron('H 5 * * *') }
parameters {
string(name: 'BINARYNAME', defaultValue: 'makehuman-community', description: 'The name used in the output exe binary')
choice(name: 'RELEASE', choices: ['False', 'True'], description: 'Is release build')
string(name: 'VERSIONNAME', defaultValue: '1.2.0', description: 'Version part of file name (when release build)')
string(name: 'DEPLOYDEST', defaultValue: 'joepal1976@ssh.tuxfamily.org:makehuman/makehuman-repository/nightly/', description: 'Where to copy final binary')
booleanParam(name: 'ALLOWBRANCH', defaultValue: false, description: 'Check to allow building even when branch is not master')
}
stages {
// Set up environment variables with filenames etc
stage('configure') {
steps {
script {
env.DISTDIR = "${env.WORKSPACE}/../dist"
env.DATESTAMP = sh(
script: "date +\"%Y%m%d\"",
returnStdout: true
).trim()
if (env.RELEASE != "True") {
env.VERSIONNAME = env.DATESTAMP
} else {
env.VERSIONNAME = "${params.VERSIONNAME}"
}
env.EXPECTEDEXE = "${env.WORKSPACE}/../pynsist-work/build/nsis/makehuman-community_${env.VERSIONNAME}.exe"
env.EXENAME = "${params.BINARYNAME}-${env.VERSIONNAME}-windows.exe"
env.ZIPNAME = "${env.WORKSPACE}/../${params.BINARYNAME}-${env.VERSIONNAME}-nightly-windows.zip"
if (env.RELEASE == "True") {
env.ZIPNAME = "${env.WORKSPACE}/../${params.BINARYNAME}-${env.VERSIONNAME}-windows.zip"
}
env.DESIREDEXE = "${env.DISTDIR}/${env.EXENAME}"
env.PERFORMUPLOAD = (env.RELEASE != "True");
sh "echo \"env.DISTDIR: ${env.DISTDIR}\""
sh "echo \"env.DATESTAMP: ${env.DATESTAMP}\""
sh "echo \"env.EXPECTEDEXE: ${env.EXPECTEDEXE}\""
sh "echo \"env.EXENAME: ${env.EXENAME}\""
sh "echo \"env.DESIREDEXE: ${env.DESIREDEXE}\""
sh "echo \"env.ZIPNAME: ${env.ZIPNAME}\""
}
}
}
stage('failOnBranch') {
when {
not {
branch 'master'
}
}
steps
{
script {
if(!params.ALLOWBRANCH) {
error('Will not build branches automatically for now')
}
}
}
}
// Create a pylint log file
stage('pylint') {
steps {
script {
dir("makehuman") {
sh "python3 create_pylint_log.py"
}
}
}
}
// Download asset binaries from github
stage('downloadAssets') {
steps {
script {
dir("makehuman") {
sh "python3 download_assets_git.py"
}
}
}
}
// Run asset compile scripts
stage('compileAssets') {
steps {
dir("makehuman") {
sh "python3 compile_models.py"
sh "python3 compile_proxies.py"
sh "python3 compile_targets.py"
}
}
}
// Create a build.conf with relevant settings
stage('createBuildConf') {
steps {
dir("buildscripts") {
sh "echo -n > build.conf"
sh "echo >> build.conf \"[General]\n\n[BuildPrepare]\n\""
sh "echo >> build.conf \"isRelease = ${params.RELEASE}\""
sh "echo >> build.conf \"noDownload = True\""
sh "echo >> build.conf \"skipScripts = True\n\""
sh "echo >> build.conf \"version = ${env.VERSIONNAME}\n\""
sh "echo >> build.conf \"[Deb]\n\n[Rpm]\n\""
sh "echo >> build.conf \"[Win32]\""
sh "echo >> build.conf \"packageName = makehumancommunity\""
sh "echo >> build.conf \"distDir = ${env.WORKSPACE}/dist\""
}
}
}
// Clear away old checked out plugin directories
stage('cleanPlugins') {
steps {
script {
sh "rm -rf ${env.WORKSPACE}/../mhx2-makehuman-exchange"
sh "rm -rf ${env.WORKSPACE}/../community-plugins-makeclothes"
sh "rm -rf ${env.WORKSPACE}/../community-plugins-makeskin"
sh "rm -rf ${env.WORKSPACE}/../community-plugins-maketarget"
sh "rm -rf ${env.WORKSPACE}/../makehuman-plugin-for-blender"
}
}
}
// Remove traces of prior builds
stage('cleanDist') {
steps {
script {
sh "rm -f ${env.WORKSPACE}/../*.zip"
sh "rm -rf ${env.DISTDIR}"
sh "mkdir -p ${env.DISTDIR}"
}
}
}
// Clone plugins which are to be included in MH
stage('cloneMHPlugins') {
steps {
script {
sh "pwd"
sh "git clone https://github.com/makehumancommunity/mhx2-makehuman-exchange ${env.WORKSPACE}/../mhx2-makehuman-exchange"
}
}
}
// Clone blender plugins which are to be bundled as zip files
stage('cloneBlenderPlugins') {
steps {
script {
sh "git clone https://github.com/makehumancommunity/makehuman-plugin-for-blender ${env.WORKSPACE}/../makehuman-plugin-for-blender"
sh "git clone https://github.com/makehumancommunity/community-plugins-makeclothes ${env.WORKSPACE}/../community-plugins-makeclothes"
sh "git clone https://github.com/makehumancommunity/community-plugins-maketarget ${env.WORKSPACE}/../community-plugins-maketarget"
sh "git clone https://github.com/makehumancommunity/community-plugins-makeskin ${env.WORKSPACE}/../community-plugins-makeskin"
sh "ls -l ${env.WORKSPACE}/.."
}
}
}
// Run the pynsist step for creating an NSIS installer
stage('pynsist') {
steps {
dir("buildscripts/win32") {
sh "python3 makePynsistBuild.py"
}
}
}
// Move the resulting EXE to the directory where we intend to collect the contents of the zip
stage('moveBuildToDist') {
steps {
script {
sh "mkdir -p ${env.DISTDIR}"
sh "mkdir -p ${env.DISTDIR}/addons_for_blender_28x"
sh "cp -v ${env.EXPECTEDEXE} ${env.DESIREDEXE}"
}
}
}
// Perform steps necessary to make MPFB installable as an addon in blender
stage('blenderizeMPFB') {
steps {
dir("${env.WORKSPACE}/../makehuman-plugin-for-blender/blender_source") {
script {
sh "echo > README.txt \"Do not extract this file. It should be installed as an addon zip in blender.\""
sh "zip -r ${env.DISTDIR}/addons_for_blender_28x/makehuman-plugin-for-blender.zip MH_Community README.txt"
}
}
}
}
// Perform steps necessary to make MakeTarget installable as an addon in blender
stage('blenderizeMakeTarget') {
steps {
dir("${env.WORKSPACE}/../community-plugins-maketarget") {
script {
sh "echo > README.txt \"Do not extract this file. It should be installed as an addon zip in blender.\""
sh "zip -r ${env.DISTDIR}/addons_for_blender_28x/maketarget2.zip maketarget README.txt"
}
}
}
}
// Perform steps necessary to make MakeClothes installable as an addon in blender
stage('blenderizeMakeClothes') {
steps {
dir("${env.WORKSPACE}/../community-plugins-makeclothes") {
script {
sh "echo > README.txt \"Do not extract this file. It should be installed as an addon zip in blender.\""
sh "zip -r ${env.DISTDIR}/addons_for_blender_28x/makeclothes2.zip makeclothes README.txt"
}
}
}
}
// Perform steps necessary to make MakeSkin installable as an addon in blender
stage('blenderizeMakeSkin') {
steps {
dir("${env.WORKSPACE}/../community-plugins-makeskin") {
script {
sh "echo > README.txt \"Do not extract this file. It should be installed as an addon zip in blender.\""
sh "zip -r ${env.DISTDIR}/addons_for_blender_28x/makeskin.zip makeskin README.txt"
}
}
}
}
// Zip contents of destination folder into a release zip
stage('buildDistZip') {
steps {
dir("${env.DISTDIR}") {
script {
sh "cp ${env.WORKSPACE}/buildscripts/win32/README.txt README.txt"
sh "unix2dos README.txt"
sh "zip -r ${env.ZIPNAME} addons_for_blender_28x README.txt ${env.EXENAME}"
}
}
}
}
stage('deleteOldNightly') {
when {
expression {
params.RELEASE == "False"
}
}
steps {
script {
sh "ssh joepal1976@ssh.tuxfamily.org 'rm -f ~/makehuman/makehuman-repository/nightly/makehuman-community-*-nightly-windows.zip'"
}
}
}
// Upload zip to destination
stage('deploy') {
when {
expression {
params.RELEASE == "False"
}
}
steps {
script {
sh "scp ${env.ZIPNAME} ${params.DEPLOYDEST}"
}
}
}
}
}