Temporarily skip flutter build apk for native_assets tests. (#158880)

Work around for https://github.com/flutter/flutter/issues/158560.
This commit is contained in:
Matan Lurey 2024-11-13 12:57:13 -08:00 committed by GitHub
parent d7e1f03ee0
commit 5a9c2b4dd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -138,8 +138,11 @@ void main(List<String> 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,
);
}