Skip to content

Commit 85359d1

Browse files
committed
wip
1 parent d4bdf1c commit 85359d1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/e2e-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,13 @@ jobs:
9595

9696
- name: memory regression
9797
run: |
98-
test "cat LPD.VmHWM" -le "$MAX_MEMORY"
98+
export LPD_VmHWM=`cat LPD.VmHWM`
99+
echo "Peak resident set size: $LPD_VmHWM"
100+
test "$LPD_VmHWM" -le "$MAX_MEMORY"
99101
100102
- name: duration regression
101103
run: |
102-
test "`cat puppeteer.out|grep 'avg run'|sed 's/avg run duration (ms) //'`" -le "$MAX_AVG_DURATION"
104+
export PUPPETEER_AVG_DURATION=`cat puppeteer.out|grep 'avg run'|sed 's/avg run duration (ms) //'`
105+
echo "puppeteer avg duration: $PUPPETEER_AVG_DURATION"
106+
test "$PUPPETEER_AVG_DURATION" -le "$MAX_AVG_DURATION"
103107

0 commit comments

Comments
 (0)