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

Update browser-tools orb and install chrome without specific version #1547

Merged
merged 1 commit into from
Jul 31, 2024
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
22 changes: 13 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: 2.1
orbs:
browser-tools: circleci/[email protected].4
browser-tools: circleci/[email protected].8
node: circleci/[email protected]
jobs:
build:
Expand All @@ -16,12 +16,14 @@ jobs:
POMEGRANATE_DB_USERNAME: pomegranate
POMEGRANATE_DB_PASSWORD: dpul
steps:
# See: https://github.com/CircleCI-Public/browser-tools-orb/issues/90#issuecomment-1698052540
# https://github.com/CircleCI-Public/browser-tools-orb/issues/75
- run: sudo apt-get update
- browser-tools/install-chrome:
chrome-version: 116.0.5845.96
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- run:
command: |
google-chrome --version
chromedriver --version
name: Check install
- checkout
- restore_cache:
keys:
Expand Down Expand Up @@ -89,12 +91,14 @@ jobs:
command: server/scripts/ci-start.sh
- image: redis:7
steps:
# See: https://github.com/CircleCI-Public/browser-tools-orb/issues/90#issuecomment-1698052540
# https://github.com/CircleCI-Public/browser-tools-orb/issues/75
- run: sudo apt-get update
- browser-tools/install-chrome:
chrome-version: 116.0.5845.96
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- run:
command: |
google-chrome --version
chromedriver --version
name: Check install
- attach_workspace:
at: '~/dpul'
# Wait for DB
Expand Down