Commit 36f7a266 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Disable AAPT cruncher on Windows for channel integration test (#9639)

It causes the test to be flaky, see https://github.com/flutter/flutter/issues/8986.
parent 28917728
......@@ -33,6 +33,14 @@ android {
signingConfig signingConfigs.debug
}
}
aaptOptions {
// TODO(goderbauer): remove when https://github.com/flutter/flutter/issues/8986 is resolved.
if(System.getenv("FLUTTER_CI_WIN")) {
println "AAPT cruncher disabled when running on Win CI."
cruncherEnabled false
}
}
}
flutter {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment