diff --git a/.ci.yaml b/.ci.yaml index 139d01924e0..04a8e191c5e 100644 --- a/.ci.yaml +++ b/.ci.yaml @@ -2289,6 +2289,19 @@ targets: - bin/ - .ci.yaml + - name: Mac basic_material_app_macos__compile + bringup: true # New target https://github.com/flutter/flutter/issues/109633 + recipe: devicelab/devicelab_drone + timeout: 60 + properties: + dependencies: >- + [ + {"dependency": "xcode", "version": "13f17a"} + ] + tags: > + ["devicelab", "hostonly"] + task_name: basic_material_app_macos__compile + - name: Mac build_ios_framework_module_test recipe: devicelab/devicelab_drone timeout: 60 diff --git a/TESTOWNERS b/TESTOWNERS index 7becddb8331..f292e80e7d3 100644 --- a/TESTOWNERS +++ b/TESTOWNERS @@ -227,6 +227,7 @@ /dev/devicelab/bin/tasks/flutter_view_win_desktop__start_up.dart @schectman @flutter/desktop /dev/devicelab/bin/tasks/platform_view_win_desktop__start_up.dart @schectman @flutter/desktop /dev/devicelab/bin/tasks/hello_world_macos__compile.dart @a-wallen @flutter/desktop +/dev/devicelab/bin/tasks/basic_material_app_macos__compile.dart @a-wallen @flutter/desktop /dev/devicelab/bin/tasks/complex_layout_macos__start_up.dart @a-wallen @flutter/desktop /dev/devicelab/bin/tasks/windows_startup_test.dart @loic-sharma @flutter/desktop diff --git a/dev/devicelab/bin/tasks/basic_material_app_macos__compile.dart b/dev/devicelab/bin/tasks/basic_material_app_macos__compile.dart new file mode 100644 index 00000000000..b97ba87c826 --- /dev/null +++ b/dev/devicelab/bin/tasks/basic_material_app_macos__compile.dart @@ -0,0 +1,12 @@ +// Copyright 2014 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:flutter_devicelab/framework/devices.dart'; +import 'package:flutter_devicelab/framework/framework.dart'; +import 'package:flutter_devicelab/tasks/perf_tests.dart'; + +Future main() async { + deviceOperatingSystem = DeviceOperatingSystem.macos; + await task(createBasicMaterialCompileTest()); +}