Use debug artifacts on mac host and update engine revision. (#3875)
This commit is contained in:
parent
0f53f7966b
commit
f0a8ee2a86
2
bin/cache/engine.version
vendored
2
bin/cache/engine.version
vendored
@ -1 +1 @@
|
|||||||
befe39324ed5502807608496fd822fa889c5b931
|
57edc534d69031b03409e7af37cbc492cb135086
|
||||||
|
@ -37,7 +37,7 @@ enum HostPlatform {
|
|||||||
String getNameForHostPlatform(HostPlatform platform) {
|
String getNameForHostPlatform(HostPlatform platform) {
|
||||||
switch (platform) {
|
switch (platform) {
|
||||||
case HostPlatform.darwin_x64:
|
case HostPlatform.darwin_x64:
|
||||||
return "mac_release";
|
return "mac_debug";
|
||||||
case HostPlatform.linux_x64:
|
case HostPlatform.linux_x64:
|
||||||
return "linux-x64";
|
return "linux-x64";
|
||||||
}
|
}
|
||||||
@ -64,7 +64,7 @@ String getNameForTargetPlatform(TargetPlatform platform) {
|
|||||||
case TargetPlatform.ios:
|
case TargetPlatform.ios:
|
||||||
return "ios_release";
|
return "ios_release";
|
||||||
case TargetPlatform.darwin_x64:
|
case TargetPlatform.darwin_x64:
|
||||||
return "mac_release";
|
return "mac_debug";
|
||||||
case TargetPlatform.linux_x64:
|
case TargetPlatform.linux_x64:
|
||||||
return "linux-x64";
|
return "linux-x64";
|
||||||
}
|
}
|
||||||
|
@ -207,7 +207,7 @@ class FlutterEngine {
|
|||||||
// Return a list of (cache directory path, download URL path) tuples.
|
// Return a list of (cache directory path, download URL path) tuples.
|
||||||
List<List<String>> _getToolsDirs() {
|
List<List<String>> _getToolsDirs() {
|
||||||
if (Platform.isMacOS)
|
if (Platform.isMacOS)
|
||||||
return <List<String>>[<String>['mac_release', 'mac_release/artifacts.zip']];
|
return <List<String>>[<String>['mac_debug', 'mac_debug/artifacts.zip']];
|
||||||
else if (Platform.isLinux)
|
else if (Platform.isLinux)
|
||||||
return <List<String>>[
|
return <List<String>>[
|
||||||
<String>['linux-x64', 'linux-x64/artifacts.zip'],
|
<String>['linux-x64', 'linux-x64/artifacts.zip'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user