This is an automated email from the ASF dual-hosted git repository.
jan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pouchdb.git
The following commit(s) were added to refs/heads/master by this push:
new 39b9f96ae ci: speed up CI by installing fewer playwright deps
39b9f96ae is described below
commit 39b9f96aea20ff828bb25cea55e096da5edf9094
Author: Alex Feyerke <[email protected]>
AuthorDate: Thu Mar 26 22:13:38 2026 +0100
ci: speed up CI by installing fewer playwright deps
---
bin/run-test.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/bin/run-test.sh b/bin/run-test.sh
index 32530fdb9..89feca5c2 100755
--- a/bin/run-test.sh
+++ b/bin/run-test.sh
@@ -83,7 +83,11 @@ pouchdb-build-node() {
}
if [[ $CI = true ]] && [[ $CLIENT != node ]]; then
- npx playwright install --with-deps "$CLIENT"
+ # npx playwright install --with-deps "$CLIENT"
+ # The full install with deps was glacially slow on CI
+ npx playwright install "$CLIENT"
+ sudo apt-get update
+ sudo apt-get install -y libwoff1 libvpx9 libevent-2.1-7t64 libopus0
libgstreamer-plugins-base1.0-0 libgstreamer-gl1.0-0
libgstreamer-plugins-bad1.0-0 libflite1 libavif16 libharfbuzz-icu0
libsecret-1-0 libhyphen0 libwayland-server0 libmanette-0.2-0 libgles2
gstreamer1.0-libav
fi
if [[ -n $SERVER ]]; then