Remove --gc_hints option, apply the --gc_hints behavior by default

This commit is contained in:
Karl Seguin
2025-05-23 14:15:55 +08:00
parent 46c6a0b4ff
commit b1d0368479
5 changed files with 5 additions and 32 deletions

View File

@@ -88,7 +88,7 @@ jobs:
- name: run puppeteer
run: |
python3 -m http.server 1234 -d ./public & echo $! > PYTHON.pid
./lightpanda serve --gc_hints & echo $! > LPD.pid
./lightpanda serve & echo $! > LPD.pid
RUNS=100 npm run bench-puppeteer-cdp > puppeteer.out || exit 1
cat /proc/`cat LPD.pid`/status |grep VmHWM|grep -oP '\d+' > LPD.VmHWM
kill `cat LPD.pid` `cat PYTHON.pid`