-
Notifications
You must be signed in to change notification settings - Fork 103
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
Install Firefox fails #504
Comments
This is due to the issue CircleCI-Public/browser-tools-orb#122. It requires an update in this repo to https://github.com/CircleCI-Public/browser-tools-orb/releases/tag/v1.5.1, currently using: Line 13 in d2c7c66
|
Workaround is to pin the firefox version to v134 or below in your
|
- cypress/install:
install-browsers: true now fails in https://github.com/cypress-io/cypress-example-kitchensink for both Chrome and Firefox tests. |
@ParallelUniv3rse could you help me figure out where that pinned version directive should sit in our config.yml? we're encountering the same problem and i'm not familiar with circleci...
|
@fathom-alastair , try this: orbs:
aws-cli: circleci/[email protected]
node: circleci/[email protected]
slack: circleci/[email protected]
cypress: cypress-io/[email protected]
browser-tools: circleci/[email protected]
workflows:
test:
when:
and:
- equal: ["", << pipeline.parameters.environment >>]
- equal: ["", << pipeline.parameters.sandbox >>]
jobs:
- browser-tools/install-browser-tools:
firefox-version: "134.0.2"
- cypress/run:
cypress-command: "npx cypress run --component --browser chrome"
filters:
branches:
ignore:
- release
- main If you decide not to pin the Firefox version, you'll have to wait for the hotfix. |
We released an update to browser-tools in our 3.4.3 orb. Please update to v3.4.3 to test that this fixes the issue. |
In the last 1 day, "Install Firefox" step fails. We are using
install-browsers: true
in the configuration.The text was updated successfully, but these errors were encountered: