Skip to content

Commit 7869159

Browse files
committed
add e2e test through proxy
1 parent 7046e18 commit 7869159

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/e2e-test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,18 @@ jobs:
9696
go run runner/main.go --verbose
9797
kill `cat LPD.pid`
9898
99+
- name: build proxy
100+
run: |
101+
cd proxy
102+
go build
103+
104+
- name: run end to end tests through proxy
105+
run: |
106+
./proxy/proxy & echo $! > PROXY.id
107+
./lightpanda serve --http_proxy 'http://127.0.0.1:3000' & echo $! > LPD.pid
108+
go run runner/main.go --verbose
109+
kill `cat LPD.pid` `cat PROXY.id`
110+
99111
cdp-and-hyperfine-bench:
100112
name: cdp-and-hyperfine-bench
101113
needs: zig-build-release

0 commit comments

Comments
 (0)