You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is related to the issue with chromium crashing in the test ci workflow. We opened an issue with github and they opened an issue with the chrome team.
In addition to the above, github runner images have both chromium and chrome installed. The browser module defaults to working with chromium over chrome on linux machines. The version of chromium on the github runner images doesn't have the fix to prevent it from crashing, but the version of chrome is up to date.
There are several things to resolve with the workflows:
The test workflow should work with ubuntu-latest.
The exec path for chrome should be set to /usr/bin/google-chrome on linux runners.
The e2e workflow should work with ubuntu-latest.
Use the matrix in the e2e tests. It's defined but then never used.
Remove the install/setup step for linux runners in the test workflow.
This issue is related to the issue with chromium crashing in the test ci workflow. We opened an issue with github and they opened an issue with the chrome team.
In addition to the above, github runner images have both chromium and chrome installed. The browser module defaults to working with chromium over chrome on linux machines. The version of chromium on the github runner images doesn't have the fix to prevent it from crashing, but the version of chrome is up to date.
There are several things to resolve with the workflows:
test
workflow should work withubuntu-latest
./usr/bin/google-chrome
on linux runners.e2e
workflow should work withubuntu-latest
.e2e
tests. It's defined but then never used.test
workflow.TestBrowserRegistry
are very flakey.hosts.js
example is failing on Windows.A PR with most to these changes has already been created. What remains are the fixes for the failing (flakey) tests.
Tasks
The text was updated successfully, but these errors were encountered: