mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* update chrome version, should be merged after recipe changes * changing directory to use chrome driver in LUCI * changing directory path's order * add cipd packages's chrome version for mac * addressing reviewer comments * more documentation. update readme * remove late since it didn't build. remove distinction in paths for local and LUCI. * addressing reviewer comments. (non-null fields needs rechanging) * addressing reviewer comments. adding 2.6 on files missing the notation
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
## Driver version in use.
|
|
## For an integration test to run, the browser's major version and the driver's
|
|
## major version should be equal. Please make sure the major version of
|
|
## the binary for `chrome` is the same with `required_driver_version`.
|
|
## (Major version meaning: For a browser that has version 13.0.5, the major
|
|
## version is 13.)
|
|
## Please refer to README's `Upgrade Browser Version` section for more details
|
|
## on how to update the version number.
|
|
required_driver_version:
|
|
## Make sure the major version of the binary in `browser_lock.yaml` is the
|
|
## same for Chrome.
|
|
chrome: '84'
|
|
chrome:
|
|
# It seems Chrome can't always release from the same build for all operating
|
|
# systems, so we specify per-OS build number.
|
|
Linux: 768968 # Major version 84
|
|
Mac: 768985 # Major version 84
|
|
Win: 768975 # Major version 84
|
|
firefox:
|
|
version: '72.0'
|
|
edge:
|
|
launcher_version: '1.2.0.0'
|
|
ios-safari:
|
|
majorVersion: 13
|
|
minorVersion: 0
|
|
device: 'iPhone 11'
|
|
## geckodriver is used for testing Firefox Browser. It works with multiple
|
|
## Firefox Browser versions.
|
|
## See: https://github.com/mozilla/geckodriver/releases
|
|
geckodriver: 'v0.26.0'
|