From 94e88a15d956ac17ba78882b3fd4ea4b56ace2e1 Mon Sep 17 00:00:00 2001 From: Istvan Matejcsok <119620946+matejcsok-ee@users.noreply.github.com> Date: Thu, 11 Jun 2026 20:56:50 +0200 Subject: [PATCH] =?UTF-8?q?ci(ubicloud):=20build=20the=20GAL=20WebGL=20tes?= =?UTF-8?q?t=20app=20=E2=80=94=2029=20gal-webgl=20scenarios=20404'd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First wx-suite run (27359020746): 262/262 non-GL tests passed; all 29 gal-webgl failures were galTest.isReady() timeouts because gal_webgl_test.{js,wasm} are gitignored artifacts built by their own script (build-gal-webgl-test.sh), which the workflow never ran — the page loaded but the wasm 404'd. The script self-sources the local emsdk like build-wasm-test.sh. Those 29 timeouts x3 attempts were also ~1.4h of the 1.7h e2e wall-clock. Co-Authored-By: Claude Fable 5 --- .github/workflows/ci-ubicloud.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-ubicloud.yml b/.github/workflows/ci-ubicloud.yml index 5eaf7f4..affe355 100644 --- a/.github/workflows/ci-ubicloud.yml +++ b/.github/workflows/ci-ubicloud.yml @@ -81,6 +81,12 @@ jobs: - name: Build wxWidgets test apps run: ./scripts/build-wasm-test.sh + # gal_webgl_test.{js,wasm} are gitignored build artifacts with their own + # build script — without this, all 29 gal-webgl scenarios time out on + # galTest.isReady() because the page 404s the wasm (run 27359020746). + - name: Build GAL WebGL test app + run: ./scripts/build-gal-webgl-test.sh + - name: Install test deps working-directory: tests run: npm ci