diff --git a/.cirrus.yml b/.cirrus.yml index fba45ba637..14f5e5639d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -333,7 +333,7 @@ task: # than just fetching the data in the first place. task: osx_instance: - image: catalina-xcode-11.3.1-flutter # see https://cirrus-ci.org/guide/macOS/ for list of images (we should update regularly) + image: catalina-xcode-12.0-flutter # see https://cirrus-ci.org/guide/macOS/ for list of images (we should update regularly) # cpu is always 2 # memory is always 8G environment: diff --git a/dev/devicelab/bin/tasks/plugin_lint_mac.dart b/dev/devicelab/bin/tasks/plugin_lint_mac.dart index d9693f3bb2..b792424d08 100644 --- a/dev/devicelab/bin/tasks/plugin_lint_mac.dart +++ b/dev/devicelab/bin/tasks/plugin_lint_mac.dart @@ -50,6 +50,8 @@ Future main() async { environment: { 'LANG': 'en_US.UTF-8', }, + // TODO(jmagman): Flutter cannot build against ARM simulators https://github.com/flutter/flutter/issues/64502 + canFail: true, ); }); @@ -69,6 +71,8 @@ Future main() async { environment: { 'LANG': 'en_US.UTF-8', }, + // TODO(jmagman): Flutter cannot build against ARM simulators https://github.com/flutter/flutter/issues/64502 + canFail: true, ); });