-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.js
172 lines (139 loc) · 5.68 KB
/
Gruntfile.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
module.exports = function(grunt) {
var _ = grunt.util._,
path = require('path');
grunt.ipaFilename = function(str) {
return String(str).replace(/\s/g, '') + '.ipa';
};
grunt.apkFilename = function(str) {
return str.replace(/ /g,"_").toLowerCase() + '_vc' + grunt.context.version_code + '_vn' + grunt.context.version_number + '.apk';
};
require("time-grunt")(grunt);
// Loads task options from `_grunts/` and loads tasks defined in `package.json`
var config = _.extend({},
require('load-grunt-config')(grunt, {
jitGrunt: true, //https://github.com/shootaroo/jit-grunt
configPath: path.join(process.cwd(), '_grunt'),
init: true, //auto grunt.initConfig
data: { //data passed into config. Can use with <%= test %>
dirs: {
'builds': '_builds',
'config': '_config'
},
context: {},
developer: {}
}
})
);
config.env = process.env;
var readConfig = function(overwrite) {
overwrite = overwrite || false;
if(overwrite && (grunt.option('app') || grunt.option('p'))) storeOptions();
var options = grunt.file.readJSON('_builds/build.options.json');
if(options) {
if(options.app) grunt.option('app', options.app);
if(options.p) grunt.option('p', options.p);
}
grunt.generic = grunt.file.readJSON('_config/generic.json');
if (grunt.option('app')) {
grunt.context = grunt.file.readJSON('_config/' + grunt.option('app') + '.json');
}
if (grunt.option('developer')) {
grunt.developer = grunt.file.readJSON('_config/developers/' + grunt.option('developer') + '.json');
} else {
grunt.developer = grunt.file.readJSON('_config/developer.default.json');
}
var dirs = {
'builds': '_builds',
'config': '_config',
'dev_builds': grunt.developer[grunt.option('app')].dev_builds_dir + grunt.option('p'),
'public_builds': grunt.developer[grunt.option('app')].public_builds_dir + grunt.option('p')
};
grunt.dirs = dirs;
};
var storeOptions = function() {
var options = {};
options.app = (grunt.option('app')) ? grunt.option('app') : 'match';
options.p = (grunt.option('p')) ? grunt.option('p') : 'ios';
grunt.file.write('_builds/build.options.json', JSON.stringify(options), {force: true});
};
var setModules = function(tiapp, modules) {
_.each(modules.ios, function(m) {
tiapp.setModule(m, { platform: 'iphone'});
});
_.each(modules.android, function(m) {
tiapp.setModule(m, { platform: 'android'});
});
};
grunt.registerTask('updateTiappXml', 'Update template generated tiapp.xml', function() {
var tiapp = require('tiapp.xml').load('./tiapp.xml');
setModules(tiapp, grunt.generic.modules);
setModules(tiapp, grunt.context.modules);
var ts = new Date().getTime();
tiapp.setProperty('build.timestamp', ts, 'string');
tiapp.write();
});
// Grunt main custom tasks...
grunt.registerTask('tasktest', 'Task tester', function() {
readConfig();
grunt.task.run('shell:android_copy_2_dev_builds_dir');
});
grunt.registerTask('wipe', 'Clean build directories', function() {
readConfig();
grunt.task.run('titanium:clean');
});
grunt.registerTask('tiapp', 'Update Ti:tiapp.xml and manifest, Alloy:config.json', function() {
readConfig(true);
grunt.task.run('template');
grunt.task.run('updateTiappXml');
grunt.task.run('titanium:clean');
});
grunt.registerTask('sim', 'Build app for testing in iOS simulator', function() {
// ti info -p ios
readConfig();
grunt.task.run('titanium:ios_sim');
});
grunt.registerTask('geny', 'Build app for Genymotion', function() {
// ti info -p android
readConfig();
grunt.task.run('shell:android_geny');
});
grunt.registerTask('test', 'Build app for testing', function() {
readConfig();
if (grunt.option('p') == "android") {
grunt.task.run('titanium:test_android');
} else {
grunt.task.run('titanium:ios_device');
}
});
grunt.registerTask('adhoc', 'Build adhoc release package', function() {
readConfig();
grunt.option('p', 'ios');
grunt.task.run('titanium:ios_dist_adhoc');
grunt.task.run('shell:ios_rename_ipa');
grunt.task.run('shell:ios_copy_2_dev_builds_dir');
grunt.task.run('shell:ios_copy_2_public_builds_dir');
//grunt.task.run('ftp:ios_upload');
});
grunt.registerTask('release', 'Build app release package', function() {
readConfig();
if (grunt.option('p') == "android") {
grunt.task.run('titanium:android_dist_playstore');
grunt.task.run('shell:jarsign');
grunt.task.run('shell:zipalign');
grunt.task.run('shell:android_copy_2_dev_builds_dir');
grunt.task.run('shell:android_copy_2_public_builds_dir');
grunt.task.run('ftp:android_upload');
grunt.task.run('shell:delete_apk_src');
} else {
grunt.option('p', 'ios');
grunt.task.run('titanium:ios_dist_appstore');
}
});
grunt.registerTask('test_ftp', 'Test FTP uploading', function() {
//shim
grunt.option('app', 'match');
grunt.option('p', 'android');
readConfig();
grunt.task.run('ftp:android_upload');
});
};