HBASE-30168 Remove webkit from Playwright e2e tests; it crashes on CI#8257
Merged
Conversation
Webkit's MiniBrowser aborts on Ubuntu 22.04 due to a libsoup2/libsoup3 conflict introduced by `playwright install --with-deps`. Drop webkit from the Playwright config and Dockerfile, and pass CI=true into the Docker container so the existing Playwright CI-mode settings take effect. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Member
Author
|
I don't think that we have a way to test this in our CI before merging :( |
PDavid
approved these changes
May 19, 2026
Contributor
PDavid
left a comment
There was a problem hiding this comment.
Many thanks, looks good to me. 👍
| docker build -t hbase-build-website -f "${WORKSPACE}/component/dev-support/docker/Dockerfile" . | ||
| docker run --rm -v "${WORKSPACE}":/home/${user} -v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro \ | ||
| -u `id -u`:`id -g` -e JAVA_HOME="/usr/lib/jvm/java-17" -e GIT_AUTHOR_NAME="HBase" \ | ||
| -u `id -u`:`id -g` -e CI=true -e JAVA_HOME="/usr/lib/jvm/java-17" -e GIT_AUTHOR_NAME="HBase" \ |
Comment on lines
+81
to
+84
| # Install OS-level dependencies for Playwright browsers used in CI. | ||
| # Only chromium and firefox — webkit crashes on Ubuntu 22.04 due to | ||
| # libsoup2/libsoup3 conflict (HBASE-30168). | ||
| RUN npx -y playwright install-deps chromium firefox |
Contributor
There was a problem hiding this comment.
Many thanks for improving this comment. 👍
Contributor
|
LGTM 👍 |
Member
Author
|
Thanks for the quick reviews. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Webkit's MiniBrowser aborts on Ubuntu 22.04 due to a libsoup2/libsoup3 conflict introduced by
playwright install --with-deps. Drop webkit from the Playwright config and Dockerfile, and pass CI=true into the Docker container so the existing Playwright CI-mode settings take effect.