diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc15702..e8c9314 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,13 +123,12 @@ jobs: php: "8.1" # language=bash setUpCmd: | - docker run --detach --quiet --net host --tmpfs /tmp:exec,mode=1777 --env TMPDIR=/tmp --entrypoint= \ + docker run --detach --quiet --network=host --shm-size=1g --entrypoint= \ --volume ./vendor/mink/driver-testsuite/web-fixtures:/fixtures \ --name chrome zenika/alpine-chrome:latest \ chromium-browser --remote-debugging-address=0.0.0.0 --remote-debugging-port=9222 \ - --no-sandbox --enable-automation --headless=new --single-process --no-first-run \ - --disable-gpu --disable-extensions --disable-web-security --disable-dev-shm-usage \ - --disable-features=TranslateUI,BlinkGenPropertyTrees,BackForwardCache + --no-sandbox --enable-automation --headless=new --no-first-run \ + --disable-gpu --disable-extensions --disable-web-security sed -e "s#http://localhost/#http://localhost:8002/#" -e "s#http://localhost:9222#http://127.0.0.1:9222#" phpunit.xml.dist > phpunit.xml curl --retry 5 --retry-all-errors --retry-delay 1 --max-time 10 --head -X GET http://localhost:9222/ # language=bash