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

Merged
merged 2 commits into from
Jul 20, 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
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-chrome
- 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 @@ -221,7 +222,8 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-chrome
- 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 @@ -233,7 +235,8 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-chrome
- 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 @@ -260,7 +263,8 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-chrome
- browser-tools/install-chrome:
chrome-version: 91.0.4472.164
- run:
name: Collect performance stats
command: node bench/gl-stats.js
Expand All @@ -274,7 +278,8 @@ jobs:
steps:
- attach_workspace:
at: ~/
- browser-tools/install-browser-tools
- browser-tools/install-browser-tools:
chrome-version: 91.0.4472.164
- run: yarn run build-dev
- run: yarn run build-token
- run:
Expand Down