Disable flutter_build_with_compilation_error_test on Windows (#81951)

For https://github.com/flutter/flutter/issues/81837

https://github.com/flutter/flutter/issues/81950 to re-enabled
diff --git a/packages/flutter_tools/test/integration.shard/flutter_build_with_compilation_error_test.dart b/packages/flutter_tools/test/integration.shard/flutter_build_with_compilation_error_test.dart
index b75a00e..5cc295d 100644
--- a/packages/flutter_tools/test/integration.shard/flutter_build_with_compilation_error_test.dart
+++ b/packages/flutter_tools/test/integration.shard/flutter_build_with_compilation_error_test.dart
@@ -17,8 +17,11 @@
   final List<String> targetPlatforms = <String>[
     'apk',
     'web',
-    if (platform.isWindows)
-      'windows',
+    // TODO(zra): Re-enable after https://github.com/flutter/flutter/issues/81837
+    // is addressed.
+    // https://github.com/flutter/flutter/issues/81950
+    // if (platform.isWindows)
+    //   'windows',
     if (platform.isMacOS)
       ...<String>['macos', 'ios'],
   ];