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

Pin chrome to version 91 (#10887) #10896

Merged
merged 1 commit into from
Jul 27, 2021
Merged
Changes from all 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
25 changes: 15 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,9 @@ jobs:
<<: *defaults
steps:
- attach_workspace:
at: .
- browser-tools/install-chrome
at: ~/
- browser-tools/install-chrome:
chrome-version: 91.0.4472.164
- run: yarn run test-render
- store_test_results:
path: test/integration/render-tests
Expand All @@ -218,8 +219,9 @@ jobs:
<<: *defaults
steps:
- attach_workspace:
at: .
- browser-tools/install-chrome
at: ~/
- browser-tools/install-chrome:
chrome-version: 91.0.4472.164
- run: yarn run test-render-prod
- store_test_results:
path: test/integration/render-tests
Expand All @@ -230,8 +232,9 @@ jobs:
<<: *defaults
steps:
- attach_workspace:
at: .
- browser-tools/install-chrome
at: ~/
- browser-tools/install-chrome:
chrome-version: 91.0.4472.164
- run: yarn run test-query
- store_test_results:
path: test/integration/query-tests
Expand All @@ -257,8 +260,9 @@ jobs:
<<: *defaults
steps:
- attach_workspace:
at: .
- browser-tools/install-chrome
at: ~/
- browser-tools/install-chrome:
chrome-version: 91.0.4472.164
- run:
name: Collect performance stats
command: node bench/gl-stats.js
Expand All @@ -271,8 +275,9 @@ jobs:
<<: *defaults
steps:
- attach_workspace:
at: .
- browser-tools/install-browser-tools
at: ~/
- browser-tools/install-browser-tools:
chrome-version: 91.0.4472.164
- run: yarn run build-dev
- run: yarn run build-token
- run:
Expand Down