From b8a8ae27771d2c9fa9327e9e9932cd14e4c6ea54 Mon Sep 17 00:00:00 2001 From: marius-kilocode Date: Fri, 11 Sep 2026 10:18:08 +0200 Subject: [PATCH] chore(ci): use GitHub-hosted runner for visual regression Both visual regression jobs failed in bunx playwright install-deps on blacksmith-4vcpu-ubuntu-2404 because apt could not reach the Ubuntu package servers through the Blacksmith mirror list (run 34574732611). Switch these two jobs to ubuntu-24.04 until Blacksmith confirms a fix. --- .github/workflows/visual-regression.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/visual-regression.yml b/.github/workflows/visual-regression.yml index aa0293b7d9f..246b973cbe7 100644 --- a/.github/workflows/visual-regression.yml +++ b/.github/workflows/visual-regression.yml @@ -59,7 +59,8 @@ jobs: needs: check-paths if: needs.check-paths.outputs.matched == 'true' name: Visual Regression (kilo-ui) # kilocode_change - runs-on: ${{ github.repository == 'Kilo-Org/kilocode' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-latest' }} # kilocode_change + # kilocode_change: temporary GitHub-hosted runner while Blacksmith apt mirror connectivity is broken, see Blacksmith report for run 34574732611 + runs-on: ubuntu-24.04 # kilocode_change timeout-minutes: 15 steps: @@ -221,7 +222,8 @@ jobs: needs: check-paths if: needs.check-paths.outputs.matched == 'true' name: Visual Regression (kilo-vscode webview) # kilocode_change - runs-on: ${{ github.repository == 'Kilo-Org/kilocode' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-latest' }} # kilocode_change + # kilocode_change: temporary GitHub-hosted runner while Blacksmith apt mirror connectivity is broken, see Blacksmith report for run 34574732611 + runs-on: ubuntu-24.04 # kilocode_change timeout-minutes: 15 env: NODE_OPTIONS: --max-old-space-size=4096