bug(nimbus): use docker-selenium 0.27.0 (#10948)

Because

* Recent builds of docker-selenium prevent us from running tests locally
on M chip macs
* After investigation we find that 0.27.0 still works

This commit

* Locks our docker-selenium container to the last working version

fixes #10947
This commit is contained in:
Jared Lockhart 2024-07-04 12:51:04 -04:00 коммит произвёл GitHub
Родитель b927f70b93
Коммит ed0619628c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -649,7 +649,8 @@ jobs:
- run:
name: Build and upload images
command: |
git clone --depth=1 git@github.com:SeleniumHQ/docker-selenium.git
# Clone last working version to ensure compatibility with aarch64 apple silicon machines
git clone --branch selenium-grid-0.27.0 --depth 1 git@github.com:SeleniumHQ/docker-selenium.git
cd docker-selenium
BUILD_ARGS="--build-arg FIREFOX_VERSION=latest" VERSION="firefox" BUILD_DATE="release" make standalone_firefox
BUILD_ARGS="--build-arg FIREFOX_VERSION=devedition-latest" VERSION="firefox" BUILD_DATE="beta" make standalone_firefox