Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing browsers to E2E tests #1731

Merged
merged 25 commits into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
167 changes: 167 additions & 0 deletions .buildkite/browser-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,111 @@ steps:
- docker-compose#v3.9.0:
push:
- browser-maze-runner:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-browser-${BRANCH_NAME}
#
- label: ':chrome: v30 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_30
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v32 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_32
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v34 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_34
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v36 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_36
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v38 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_38
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v40 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_40
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v42 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=chrome_42
concurrency: 5
concurrency_group: 'browserstack'

- label: ':chrome: v43 Browser tests'
depends_on: "browser-maze-runner-image"
Expand Down Expand Up @@ -231,6 +336,68 @@ steps:
concurrency: 5
concurrency_group: 'browserstack'

- label: ':iphone: iOS 15.4 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=iphone_13
env:
HOST: "bs-local.com"
concurrency: 5
concurrency_group: 'browserstack'

- label: ':android: Google Nexus 5 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=android_nexus5
concurrency: 5
concurrency_group: 'browserstack'

- label: ':android: Samsung Galaxy S6 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=android_s6
concurrency: 5
concurrency_group: 'browserstack'

- label: ':android: Samsung Galaxy S7 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
plugins:
docker-compose#v3.9.0:
pull: browser-maze-runner
run: browser-maze-runner
use-aliases: true
verbose: true
command:
- --farm=bs
- --browser=android_s7
concurrency: 5
concurrency_group: 'browserstack'

- label: ':android: Samsung Galaxy S8 Browser tests'
depends_on: "browser-maze-runner-image"
timeout_in_minutes: 20
Expand Down
Loading