Skip assemble version check in tool backend scripts (#76414)

This commit is contained in:
Jenn Magder 2021-02-22 10:54:19 -08:00 committed by GitHub
parent b7fcac2fd7
commit e94f36a7c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,7 @@ BuildApp() {
${flutter_engine_flag} \
${local_engine_flag} \
assemble \
--no-version-check \
${performance_measurement_option} \
-dTargetPlatform=darwin-x64 \
-dTargetFile="${target_path}" \

View File

@ -66,6 +66,7 @@ or
if (flutterEngine != null) '--local-engine-src-path=$flutterEngine',
if (localEngine != null) '--local-engine=$localEngine',
'assemble',
'--no-version-check',
'--output=build',
'-dTargetPlatform=$targetPlatform',
'-dTrackWidgetCreation=$trackWidgetCreation',

View File

@ -171,6 +171,7 @@ is set to release or run \"flutter build ios --release\", then re-run Archive fr
${flutter_engine_flag} \
${local_engine_flag} \
assemble \
--no-version-check \
--output="${BUILT_PRODUCTS_DIR}/" \
${performance_measurement_option} \
-dTargetPlatform=ios \

View File

@ -1002,6 +1002,7 @@ abstract class BaseFlutterTask extends DefaultTask {
args "--quiet"
}
args "assemble"
args "--no-version-check"
args "--depfile", "${intermediateDir}/flutter_build.d"
args "--output", "${intermediateDir}"
if (performanceMeasurementFile != null) {