Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
if: github.event_name != 'pull_request'

# use a self host runner.
runs-on: lpd_bench_m5.large
runs-on: lpd-bench-hetzner
timeout-minutes: 15

steps:
Expand All @@ -169,11 +169,14 @@ jobs:
- run: chmod a+x ./lightpanda

- name: start http
run: go run ws/main.go & echo $! > WS.pid
run: |
go run ws/main.go & echo $! > WS.pid
sleep 2

- name: run puppeteer
run: |
./lightpanda serve & echo $! > LPD.pid
sleep 2
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`
Expand Down