[ci] Remove web renderer option from tools. (#8055)

Removes the `--web-renderer` option from the "drive examples" and "dart test" commands.

Fixes https://github.com/flutter/flutter/issues/151869
This commit is contained in:
David Iglesias
2024-11-12 11:21:21 -08:00
committed by GitHub
parent 53c1ff2b2a
commit 4a7b385322
4 changed files with 3 additions and 81 deletions

View File

@ -128,13 +128,7 @@ class DriveExamplesCommand extends PackageLoopingCommand {
'web-server',
'--web-port=7357',
'--browser-name=chrome',
if (useWasm)
'--wasm'
// TODO(dit): Clean this up, https://github.com/flutter/flutter/issues/151869
else if (platform.environment['CHANNEL']?.toLowerCase() == 'master')
'--web-renderer=canvaskit'
else
'--web-renderer=html',
if (useWasm) '--wasm',
if (platform.environment.containsKey('CHROME_EXECUTABLE'))
'--chrome-binary=${platform.environment['CHROME_EXECUTABLE']}',
],