forked from cocos/engine-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
265 lines (236 loc) · 8.98 KB
/
gulpfile.js
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
/****************************************************************************
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated engine source code (the "Software"), a limited,
worldwide, royalty-free, non-assignable, revocable and non-exclusive license
to use Cocos Creator solely to develop games on your target platforms. You shall
not use Cocos Creator software for developing other software or tools that's
used for developing games. You are not granted to publish, distribute,
sublicense, and/or sell copies of Cocos Creator.
The software or tools in this License Agreement are licensed, not sold.
Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
'use strict';
var gulp = require('gulp');
var gulpSequence = require('gulp-sequence');
var zip = require('gulp-zip');
var Ftp = require('ftp');
var ExecSync = require('child_process').execSync;
var spawn = require('child_process').spawn;
var Path = require('path');
var fs = require('fs-extra');
const which = require('which');
const del = require('del');
function absolutePath (relativePath) {
return Path.join(__dirname, relativePath);
}
var program = require('commander');
program
.option('-b, --bump [version]', 'bump to a new version, or +1')
.parse(process.argv);
gulp.task('make-cocos2d-x', gulpSequence('gen-cocos2d-x', 'upload-cocos2d-x'));
if (process.platform === 'darwin') {
gulp.task('publish', gulpSequence('update', 'init', 'bump-version', 'make-cocos2d-x', 'make-simulator'));
}
else {
gulp.task('publish', gulpSequence('update', 'init', 'bump-version', 'make-simulator'));
}
function execSync (cmd, workPath) {
var execOptions = {
cwd: workPath || '.',
stdio: 'inherit'
};
ExecSync(cmd, execOptions);
}
function upload2Ftp (localPath, ftpPath, config, cb) {
var ftpClient = new Ftp();
ftpClient.on('error', function (err) {
if (err) {
if (cb) {
cb(err);
}
else {
console.warn('Upload errored after destroy: ', ftpPath);
}
}
});
ftpClient.on('ready', function () {
var dirName = Path.dirname(ftpPath);
ftpClient.mkdir(dirName, true, function (err) {
if (err) {
return cb(err);
}
ftpClient.put(localPath, ftpPath, function (err) {
if (err) {
return cb(err);
}
ftpClient.end();
ftpClient.destroy();
cb();
cb = null;
});
});
});
// connect to ftp
ftpClient.connect(config);
}
function uploadZipFile (zipFileName, path, cb) {
var branch = getCurrentBranch();
if (branch === 'develop') {
branch = 'dev';
}
var remotePath = Path.join('TestBuilds', 'Fireball', 'cocos2d-x', branch, zipFileName);
var zipFilePath = Path.join(path, zipFileName);
upload2Ftp(zipFilePath, remotePath, {
host: '192.168.52.109',
user: process.env.ftpUser,
password: process.env.ftpPass
}, cb);
}
function getCurrentBranch () {
var spawnSync = require('child_process').spawnSync;
var output = spawnSync('git', ['symbolic-ref', '--short', '-q', 'HEAD']);
// console.log(output);
return output.stdout.toString().trim();
}
function formatPath (p) {
return p.replace(/\\/g, '/');
}
gulp.task('update', function (cb) {
const git = require('./utils/git');
var branch = git.getCurrentBranch('.');
git.pull('.', 'git@github.com:cocos-creator/cocos2d-x-lite.git', branch, cb);
});
gulp.task('init', function (cb) {
execSync('node ./utils/download-deps.js');
execSync('git submodule update --init');
execSync('python download-bin.py --remove-download no', './tools/cocos2d-console');
cb();
});
gulp.task('gen-cocos2d-x', function (cb) {
execSync('./git-archive-all cocos2d-x.zip', './tools/make-package');
cb();
});
gulp.task('gen-simulator', async function () {
console.log('remove old simulator project\n');
await del(Path.join(__dirname, './simulator'));
let isWin32 = process.platform === 'win32';
// get the cmake path
let cmakeBin = await new Promise((resolve, reject) => {
which('cmake', (err, resolvedPath) => {
if (err) {
console.log('failed to resolve path for cmake, maybe you need to install cmake in the global environment\n');
return reject(err);
}
resolve(resolvedPath);
});
});
let simulatorProject = absolutePath('./simulator');
await fs.ensureDir(simulatorProject);
console.log('=====================================\n');
console.log('make project\n');
console.log('=====================================\n');
await new Promise((resolve, reject) => {
let cmakeProcess = spawn(cmakeBin, ['-G', isWin32 ? 'Visual Studio 15 2017' : 'Xcode', absolutePath('./tools/simulator/frameworks/runtime-src/')], {
cwd: simulatorProject,
});
cmakeProcess.on('close', () => {
console.log('cmake finished!');
resolve();
});
cmakeProcess.on('error', err => {
console.error(err);
});
cmakeProcess.stderr.on('data', err => {
console.error(err.toString ? err.toString() : err);
});
cmakeProcess.stdout.on('data', data => {
console.log(data.toString ? data.toString() : data);
});
});
console.log('=====================================\n');
console.log('build project\n');
console.log('=====================================\n');
await new Promise((resolve, reject) => {
let makeArgs = ['--build', simulatorProject];
if (!isWin32) {
makeArgs = makeArgs.concat(['--', '-quiet', '-arch', 'x86_64']);
}
let buildProcess = spawn(cmakeBin, makeArgs, {
cwd: simulatorProject,
});
buildProcess.on('close', () => {
console.log('cmake finished!');
resolve();
});
buildProcess.on('error', err => {
console.error(err);
process.exit(1);
});
buildProcess.stderr.on('data', err => {
console.error(err.toString ? err.toString() : err);
process.exit(1);
});
buildProcess.stdout.on('data', data => {
console.log(data.toString ? data.toString() : data);
});
});
});
gulp.task('clean-simulator', async function () {
console.log('=====================================\n');
console.log('clean project\n');
console.log('=====================================\n');
let isWin32 = process.platform === 'win32';
let delPatterns = [
formatPath(Path.join(__dirname, './simulator/*')),
formatPath(`!${Path.join(__dirname, './simulator/Debug')}`),
];
if (!isWin32) {
delPatterns.push(formatPath(Path.join(__dirname, './simulator/Debug/libcocos2d.a')));
delPatterns.push(formatPath(Path.join(__dirname, './simulator/Debug/libsimulator.a')));
}
console.log('delete patterns: ', JSON.stringify(delPatterns, undefined, 2));
await del(delPatterns, { force: true });
});
gulp.task('gen-simulator-release', gulp.series('gen-simulator', 'clean-simulator'));
gulp.task('upload-cocos2d-x', function (cb) {
var zipFileName = 'cocos2d-x.zip';
uploadZipFile(zipFileName, './tools/make-package', cb);
});
gulp.task('bump-version', function (cb) {
let ver;
if (!program.bump) {
return cb();
}
let pjson = require('./package.json');
if (typeof program.bump === 'string') {
// new version
ver = program.bump;
if (!/^\d/.test(ver)) {
return cb(`New version must starts with a digit`);
}
}
else {
// version +1
ver = pjson.version.replace(/\d+$/, m => parseInt(m) + 1);
}
// update package.json
console.log(`Bump version from ${pjson.version} to ${ver}`);
pjson.version = ver;
fs.writeFileSync('package.json', JSON.stringify(pjson, null, 2), 'utf8');
// update cocos/cocos2d.cpp
let filePath = Path.join('cocos', 'cocos2d.cpp');
let content = fs.readFileSync(filePath, 'utf8');
let re = /(cocos2dVersion(?:.|\n)*return\s+").+(";)/;
content = content.replace(re, `$1${ver}$2`);
fs.writeFileSync(filePath, content, 'utf8');
cb();
});