-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake.dart
executable file
·218 lines (196 loc) · 5.63 KB
/
make.dart
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
#!/usr/bin/env dart
// ignore_for_file: avoid_printd, avoid_print
import 'dart:convert';
import 'dart:io';
const appName = 'ToastTiku';
const buildDataFilePath = 'lib/res/build_data.dart';
const apkPath = 'build/app/outputs/flutter-apk/app-release.apk';
const xcarchivePath = 'build/ios/archive/Runner.xcarchive';
const macosAppPath = 'build/macos/Build/Products/Release/toast_tiku.app';
var regiOSProjectVer = RegExp(r'CURRENT_PROJECT_VERSION = .+;');
var regiOSMarketVer = RegExp(r'MARKETING_VERSION = .+');
const iOSInfoPlistPath = 'ios/Runner.xcodeproj/project.pbxproj';
const macOSInfoPlistPath = 'macos/Runner.xcodeproj/project.pbxproj';
const skslFileSuffix = '.sksl.json';
const buildFuncs = {
'ios': flutterBuildIOS,
'android': flutterBuildAndroid,
};
int? build;
Future<void> getGitCommitCount() async {
final result = await Process.run('git', ['log', '--oneline']);
build = (result.stdout as String)
.split('\n')
.where((line) => line.isNotEmpty)
.length;
}
Future<void> writeStaicConfigFile(
Map<String, dynamic> data,
String className,
String path,
) async {
final buffer = StringBuffer();
buffer.writeln('// This file is generated by ./make.dart');
buffer.writeln('');
buffer.writeln('class $className {');
for (var entry in data.entries) {
final type = entry.value.runtimeType;
final value = json.encode(entry.value);
buffer.writeln(' static const $type ${entry.key} = $value;');
}
buffer.writeln('}');
await File(path).writeAsString(buffer.toString());
}
Future<int> getGitModificationCount() async {
final result =
await Process.run('git', ['ls-files', '-mo', '--exclude-standard']);
return (result.stdout as String)
.split('\n')
.where((line) => line.isNotEmpty)
.length;
}
Future<String> getFlutterVersion() async {
final result = await Process.run('flutter', ['--version'], runInShell: true);
return (result.stdout as String);
}
Future<Map<String, dynamic>> getBuildData() async {
final data = {
'name': appName,
'build': build,
'engine': await getFlutterVersion(),
'buildAt': DateTime.now().toString(),
'modifications': await getGitModificationCount(),
};
return data;
}
String jsonEncodeWithIndent(Map<String, dynamic> json) {
const encoder = JsonEncoder.withIndent(' ');
return encoder.convert(json);
}
Future<void> updateBuildData() async {
print('Updating BuildData...');
final data = await getBuildData();
print(jsonEncodeWithIndent(data));
await writeStaicConfigFile(data, 'BuildData', buildDataFilePath);
}
Future<void> dartFormat() async {
final result = await Process.run(
'dart',
['format', '.'],
runInShell: true,
);
print('\n${result.stdout}');
if (result.exitCode != 0) {
print(result.stderr);
exit(1);
}
}
Future<void> flutterBuild(
String source,
String target,
String buildType,
) async {
final args = [
'build',
buildType,
];
// No sksl cache for macos
// if ('macos' != buildType) {
// args.add('--bundle-sksl-path=$buildType$skslFileSuffix');
// }
final isAndroid = 'apk' == buildType;
// [--target-platform] only for Android
if (isAndroid) {
args.addAll([
'--target-platform=android-arm64',
'--build-number=$build',
'--build-name=1.0.$build',
]);
}
print('[$buildType]\nBuilding with args: ${args.join(' ')}');
final buildResult = await Process.run(
'flutter',
args,
runInShell: true,
);
final exitCode = buildResult.exitCode;
if (exitCode == 0) {
target = target.replaceFirst('build', build.toString());
print('Copying from $source to $target');
if (isAndroid) {
await File(source).copy(target);
} else {
final result = await Process.run('cp', ['-r', source, target]);
if (result.exitCode != 0) {
print(result.stderr);
exit(1);
}
}
print('Done.\n');
} else {
print(buildResult.stdout);
print(buildResult.stderr);
print('\nBuild failed with exit code $exitCode');
exit(exitCode);
}
}
Future<void> flutterBuildIOS() async {
await changeInfoPlistVersion();
await flutterBuild(
xcarchivePath,
'./release/${appName}_ios_build.xcarchive',
'ipa',
);
}
Future<void> flutterBuildMacOS() async {
await changeInfoPlistVersion();
await flutterBuild(
macosAppPath,
'./release/${appName}_macos_build.app',
'macos',
);
}
Future<void> flutterBuildAndroid() async {
await flutterBuild(apkPath, './release/${appName}_build_Arm64.apk', 'apk');
}
Future<void> changeInfoPlistVersion() async {
for (final path in [iOSInfoPlistPath, macOSInfoPlistPath]) {
final file = File(path);
final contents = await file.readAsString();
final newContents = contents
.replaceAll(regiOSMarketVer, 'MARKETING_VERSION = 1.0.$build;')
.replaceAll(regiOSProjectVer, 'CURRENT_PROJECT_VERSION = $build;');
await file.writeAsString(newContents);
}
}
void main(List<String> args) async {
if (args.isEmpty) {
print('No action. Exit.');
return;
}
final command = args[0];
switch (command) {
case 'build':
final stopwatch = Stopwatch()..start();
await getGitCommitCount();
await updateBuildData();
await dartFormat();
if (args.length > 1) {
final platform = args[1];
if (buildFuncs.keys.contains(platform)) {
await buildFuncs[platform]!();
} else {
print('Unknown platform: $platform');
}
return;
}
for (final func in buildFuncs.values) {
await func();
}
print('Build finished in ${stopwatch.elapsed}');
return;
default:
print('Unsupported command: $command');
return;
}
}