diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 3aa8f31d43..e9e0a53ff1 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -504,7 +504,7 @@ jobs: - job_006 - job_007 job_015: - name: "unit_test; Flutter stable; PKG: pkgs/flutter_http_example; `flutter test --platform vm`" + name: "unit_test; Flutter stable; PKG: pkgs/flutter_http_example; `flutter test --platform linux`" runs-on: ubuntu-latest steps: - name: Cache Pub hosted dependencies @@ -529,8 +529,8 @@ jobs: run: flutter pub upgrade if: "always() && steps.checkout.conclusion == 'success'" working-directory: pkgs/flutter_http_example - - name: "pkgs/flutter_http_example; flutter test --platform vm" - run: flutter test --platform vm + - name: "pkgs/flutter_http_example; flutter test --platform linux" + run: flutter test --platform linux if: "always() && steps.pkgs_flutter_http_example_pub_upgrade.conclusion == 'success'" working-directory: pkgs/flutter_http_example needs: diff --git a/pkgs/flutter_http_example/mono_pkg.yaml b/pkgs/flutter_http_example/mono_pkg.yaml index 64610c22e2..8482c0435d 100644 --- a/pkgs/flutter_http_example/mono_pkg.yaml +++ b/pkgs/flutter_http_example/mono_pkg.yaml @@ -6,6 +6,6 @@ stages: - analyze: --fatal-infos - format: - unit_test: - - test: --platform vm + - test: --platform linux - test: --platform chrome - command: flutter test diff --git a/tool/ci.sh b/tool/ci.sh index 19dbe70e76..13a6149252 100755 --- a/tool/ci.sh +++ b/tool/ci.sh @@ -88,8 +88,8 @@ for PKG in ${PKGS}; do dart format --output=none --set-exit-if-changed . || EXIT_CODE=$? ;; test_0) - echo 'flutter test --platform vm' - flutter test --platform vm || EXIT_CODE=$? + echo 'flutter test --platform linux' + flutter test --platform linux || EXIT_CODE=$? ;; test_1) echo 'flutter test --platform chrome'