From 5a9c2b4dd1d9ccd22e87eeb2edcf03de74128f76 Mon Sep 17 00:00:00 2001 From: Matan Lurey Date: Wed, 13 Nov 2024 12:57:13 -0800 Subject: [PATCH] Temporarily skip flutter build apk for native_assets tests. (#158880) Work around for https://github.com/flutter/flutter/issues/158560. --- .../isolated/native_assets_without_cbuild_assemble_test.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/flutter_tools/test/integration.shard/isolated/native_assets_without_cbuild_assemble_test.dart b/packages/flutter_tools/test/integration.shard/isolated/native_assets_without_cbuild_assemble_test.dart index 12ac06d09f5..e0ce987e7f3 100644 --- a/packages/flutter_tools/test/integration.shard/isolated/native_assets_without_cbuild_assemble_test.dart +++ b/packages/flutter_tools/test/integration.shard/isolated/native_assets_without_cbuild_assemble_test.dart @@ -138,8 +138,11 @@ void main(List args) async { mode: ProcessStartMode.inheritStdio, ); expect(await process.exitCode, 0); - }); + },); }, + // TODO(matanlurey): Debug why flutter build apk often timesout. + // See https://github.com/flutter/flutter/issues/158560 for details. + skip: buildCommand == 'apk' ? 'flutter build apk times out' : false, ); }