From 14db7a8eb37f09ed0ab7daf3947721feb1799ccf Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 12 Jan 2026 08:53:24 +0100 Subject: [PATCH 1/3] ci: move fetch test from integration to e2e --- .github/workflows/e2e-integration-test.yml | 16 ---------------- .github/workflows/e2e-test.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/e2e-integration-test.yml b/.github/workflows/e2e-integration-test.yml index 7a6de0ee..5bb24d1f 100644 --- a/.github/workflows/e2e-integration-test.yml +++ b/.github/workflows/e2e-integration-test.yml @@ -66,19 +66,3 @@ jobs: ./lightpanda serve & echo $! > LPD.pid go run integration/main.go kill `cat LPD.pid` - - browser-fetch: - name: browser fetch - needs: zig-build-release - - runs-on: ubuntu-latest - - steps: - - name: download artifact - uses: actions/download-artifact@v4 - with: - name: lightpanda-build-release - - - run: chmod a+x ./lightpanda - - - run: ./lightpanda fetch https://demo-browser.lightpanda.io/campfire-commerce/ diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index c9e0271a..ffceba2c 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -232,3 +232,19 @@ jobs: - name: format and send json result run: /perf-fmt hyperfine ${{ github.sha }} hyperfine.json + + browser-fetch: + name: browser fetch + needs: zig-build-release + + runs-on: ubuntu-latest + + steps: + - name: download artifact + uses: actions/download-artifact@v4 + with: + name: lightpanda-build-release + + - run: chmod a+x ./lightpanda + + - run: ./lightpanda fetch https://demo-browser.lightpanda.io/campfire-commerce/ From 32520000c6a5eb81ceb56f92e3cfa9d261998e60 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 12 Jan 2026 09:09:36 +0100 Subject: [PATCH 2/3] ci: use releaseFast mode for wpt --- .github/workflows/wpt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wpt.yml b/.github/workflows/wpt.yml index 2011e766..fc8da414 100644 --- a/.github/workflows/wpt.yml +++ b/.github/workflows/wpt.yml @@ -31,7 +31,7 @@ jobs: - uses: ./.github/actions/install - name: json output - run: zig build -Dprebuilt_v8_path=v8/libc_v8.a wpt -- --json > wpt.json + run: zig build -Dprebuilt_v8_path=v8/libc_v8.a -Doptimize=ReleaseFast wpt -- --json > wpt.json - name: write commit run: | From 2a468cc75003f5ad536ab96a4a46f82ca7997252 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 12 Jan 2026 09:18:16 +0100 Subject: [PATCH 3/3] ci: split wpt build and run vv8 build can pollute stdout output. --- .github/workflows/wpt.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wpt.yml b/.github/workflows/wpt.yml index fc8da414..3e936d84 100644 --- a/.github/workflows/wpt.yml +++ b/.github/workflows/wpt.yml @@ -30,8 +30,11 @@ jobs: - uses: ./.github/actions/install - - name: json output - run: zig build -Dprebuilt_v8_path=v8/libc_v8.a -Doptimize=ReleaseFast wpt -- --json > wpt.json + - name: build wpt + run: zig build -Dprebuilt_v8_path=v8/libc_v8.a -Doptimize=ReleaseFast wpt + + - name: run test with json output + run: ./zig-out/bin/lightpanda-wpt > wpt.json - name: write commit run: |