From 8490ec2ac67283814a16b4ecd9fade4374df27a8 Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Tue, 16 Feb 2021 09:48:45 -0800 Subject: [PATCH] [ci] Remove null safety experiment flag (#24392) --- .cirrus.yml | 2 +- ci/analyze.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index c56db8d7275c1..103cf80a99e4e 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -55,7 +55,7 @@ task: bin/flutter analyze --dartdocs --flutter-repo --local-engine=host_debug_unopt test_framework_script: | cd $FRAMEWORK_PATH/flutter/packages/flutter - ../../bin/flutter test --local-engine=host_debug_unopt --null-assertions --sound-null-safety --enable-experiment=non-nullable + ../../bin/flutter test --local-engine=host_debug_unopt --null-assertions --sound-null-safety # TODO(fujino): remove this once ci/licenses.sh is run on LUCI - name: licenses_check build_script: | diff --git a/ci/analyze.sh b/ci/analyze.sh index 85c2c2387144d..832b479fcf5ff 100755 --- a/ci/analyze.sh +++ b/ci/analyze.sh @@ -62,7 +62,6 @@ echo "Analyzing dart:ui library..." autoninja -C "$SRC_DIR/out/host_debug_unopt" generate_dart_ui analyze \ --options "$FLUTTER_DIR/analysis_options.yaml" \ - --enable-experiment=non-nullable \ "$SRC_DIR/out/host_debug_unopt/gen/sky/bindings/dart_ui/ui.dart" echo "Analyzing flutter_frontend_server..."