Unverified Commit 661e0350 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Disable all Dart fingerprinters (#31463)

parent 1fcd71bf
...@@ -196,10 +196,11 @@ class AOTSnapshotter { ...@@ -196,10 +196,11 @@ class AOTSnapshotter {
}, },
depfilePaths: <String>[], depfilePaths: <String>[],
); );
if (await fingerprinter.doesFingerprintMatch()) { // TODO(jonahwilliams): re-enable once this can be proved correct.
printTrace('Skipping AOT snapshot build. Fingerprint match.'); // if (await fingerprinter.doesFingerprintMatch()) {
return 0; // printTrace('Skipping AOT snapshot build. Fingerprint match.');
} // return 0;
// }
final SnapshotType snapshotType = SnapshotType(platform, buildMode); final SnapshotType snapshotType = SnapshotType(platform, buildMode);
final int genSnapshotExitCode = await _timedStep('gen_snapshot', () => genSnapshot.run( final int genSnapshotExitCode = await _timedStep('gen_snapshot', () => genSnapshot.run(
...@@ -467,10 +468,11 @@ class JITSnapshotter { ...@@ -467,10 +468,11 @@ class JITSnapshotter {
}, },
depfilePaths: <String>[], depfilePaths: <String>[],
); );
if (await fingerprinter.doesFingerprintMatch()) { // TODO(jonahwilliams): re-enable once this can be proved correct.
printTrace('Skipping JIT snapshot build. Fingerprint match.'); // if (await fingerprinter.doesFingerprintMatch()) {
return 0; // printTrace('Skipping JIT snapshot build. Fingerprint match.');
} // return 0;
// }
final SnapshotType snapshotType = SnapshotType(platform, buildMode); final SnapshotType snapshotType = SnapshotType(platform, buildMode);
final int genSnapshotExitCode = await genSnapshot.run( final int genSnapshotExitCode = await genSnapshot.run(
......
...@@ -384,6 +384,7 @@ Future<XcodeBuildResult> buildXcodeProject({ ...@@ -384,6 +384,7 @@ Future<XcodeBuildResult> buildXcodeProject({
], ],
properties: <String, String>{}, properties: <String, String>{},
); );
final bool didPodInstall = await cocoaPods.processPods( final bool didPodInstall = await cocoaPods.processPods(
iosProject: project.ios, iosProject: project.ios,
iosEngineDir: flutterFrameworkDir(buildInfo.mode), iosEngineDir: flutterFrameworkDir(buildInfo.mode),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment