diff --git a/.ci.yaml b/.ci.yaml index 11b920b3498..960c889aaba 100644 --- a/.ci.yaml +++ b/.ci.yaml @@ -1212,7 +1212,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_1_6 + - name: Linux tool_integration_tests_1_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1228,7 +1229,7 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "1_6" + subshard: "1_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" @@ -1240,7 +1241,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_2_6 + - name: Linux tool_integration_tests_2_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1256,7 +1258,7 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "2_6" + subshard: "2_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" @@ -1268,7 +1270,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_3_6 + - name: Linux tool_integration_tests_3_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1284,7 +1287,7 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "3_6" + subshard: "3_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" @@ -1296,7 +1299,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_4_6 + - name: Linux tool_integration_tests_4_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1312,7 +1316,7 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "4_6" + subshard: "4_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" @@ -1324,7 +1328,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_5_6 + - name: Linux tool_integration_tests_5_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1340,7 +1345,7 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "5_6" + subshard: "5_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" @@ -1352,7 +1357,8 @@ targets: - engine/** - DEPS - - name: Linux tool_integration_tests_6_6 + - name: Linux tool_integration_tests_6_7 + bringup: true recipe: flutter/flutter_drone timeout: 60 properties: @@ -1368,7 +1374,36 @@ targets: {"dependency": "open_jdk", "version": "version:17"} ] shard: tool_integration_tests - subshard: "6_6" + subshard: "6_7" + tags: > + ["framework", "hostonly", "shard", "linux"] + test_timeout_secs: "2700" + runIf: + - dev/** + - packages/flutter_tools/** + - bin/** + - .ci.yaml + - engine/** + - DEPS + + - name: Linux tool_integration_tests_7_7 + bringup: true + recipe: flutter/flutter_drone + timeout: 60 + properties: + add_recipes_cq: "true" + dependencies: >- + [ + {"dependency": "android_sdk", "version": "version:35v1"}, + {"dependency": "chrome_and_driver", "version": "version:125.0.6422.141"}, + {"dependency": "clang", "version": "git_revision:5d5aba78dbbee75508f01bcaa69aedb2ab79065a"}, + {"dependency": "cmake", "version": "build_id:8787856497187628321"}, + {"dependency": "goldctl", "version": "git_revision:2387d6fff449587eecbb7e45b2692ca0710b63b9"}, + {"dependency": "ninja", "version": "version:1.9.0"}, + {"dependency": "open_jdk", "version": "version:17"} + ] + shard: tool_integration_tests + subshard: "7_7" tags: > ["framework", "hostonly", "shard", "linux"] test_timeout_secs: "2700" diff --git a/engine/src/flutter/ci/builders/linux_unopt.json b/engine/src/flutter/ci/builders/linux_unopt.json index 3d7d1d5aa10..e528ec3c20a 100644 --- a/engine/src/flutter/ci/builders/linux_unopt.json +++ b/engine/src/flutter/ci/builders/linux_unopt.json @@ -16,8 +16,6 @@ "debug", "--unoptimized", "--prebuilt-dart-sdk", - "--asan", - "--lsan", "--dart-debug", "--rbe", "--no-goma" diff --git a/engine/src/flutter/shell/common/shell_unittests.cc b/engine/src/flutter/shell/common/shell_unittests.cc index c8f1c796cd2..565a4af58bd 100644 --- a/engine/src/flutter/shell/common/shell_unittests.cc +++ b/engine/src/flutter/shell/common/shell_unittests.cc @@ -4377,7 +4377,7 @@ TEST_F(ShellTest, PointerPacketFlushMessageLoop) { } // Verifies a pointer event will flush the dart event loop. -TEST_F(ShellTest, PointerPacketsAreDispatchedWithTask) { +TEST_F(ShellTest, DISABLED_PointerPacketsAreDispatchedWithTask) { Settings settings = CreateSettingsForFixture(); ThreadHost thread_host("io.flutter.test." + GetCurrentTestName() + ".", ThreadHost::Type::kPlatform);