diff --git a/dev/bots/test.dart b/dev/bots/test.dart index adc4a471029..47b7eaadb61 100644 --- a/dev/bots/test.dart +++ b/dev/bots/test.dart @@ -442,8 +442,7 @@ Future _runExampleProjectBuildTests(FileSystemEntity exampleDirectory) asy } if (Platform.isWindows) { if (Directory(path.join(examplePath, 'windows')).existsSync()) { - await _flutterBuildWin32(examplePath, release: false, additionalArgs: additionalArgs, verifyCaching: verifyCaching); - await _flutterBuildWin32(examplePath, release: true, additionalArgs: additionalArgs, verifyCaching: verifyCaching); + // TODO(jmagman): Re-add Windows build tests when Visual Studio is available https://github.com/flutter/flutter/issues/81956. } else { print('Example project ${path.basename(examplePath)} has no windows directory, skipping Win32'); } @@ -507,21 +506,6 @@ Future _flutterBuildMacOS(String relativePathToApplication, { ); } -Future _flutterBuildWin32(String relativePathToApplication, { - @required bool release, - bool verifyCaching = false, - List additionalArgs = const [], -}) async { - assert(Platform.isWindows); - await runCommand(flutter, ['config', '--enable-windows-desktop']); - print('${green}Testing Windows build$reset for $cyan$relativePathToApplication$reset...'); - await _flutterBuild(relativePathToApplication, 'Windows', 'windows', - release: release, - verifyCaching: verifyCaching, - additionalArgs: additionalArgs - ); -} - Future _flutterBuild( String relativePathToApplication, String platformLabel, diff --git a/dev/try_builders.json b/dev/try_builders.json index 15c84146bb9..15d4c0178d4 100644 --- a/dev/try_builders.json +++ b/dev/try_builders.json @@ -579,7 +579,7 @@ "name": "Windows build_tests_2_3", "repo": "flutter", "task_name": "win_build_tests_2_3", - "enabled": false + "enabled": true }, { "name": "Windows build_tests_3_3",