PDavid commented on code in PR #8257:
URL: https://github.com/apache/hbase/pull/8257#discussion_r3265513308
##########
dev-support/generate-website/generate-hbase-website.Jenkinsfile:
##########
@@ -50,7 +50,7 @@ pipeline {
user=$(whoami)
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" \
Review Comment:
👍
##########
dev-support/docker/Dockerfile:
##########
@@ -78,8 +78,10 @@ RUN curl -fsSL
"https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-linux-x
&& tar -xzf node.tar.gz -C /usr/local --strip-components=1 \
&& rm node.tar.gz
-# Install Playwright dependencies. Needed for docs PDF export and docs UI e2e
tests.
-RUN npx -y playwright install --with-deps
+# 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
Review Comment:
Many thanks for improving this comment. 👍
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]