From 73f495313c12df96333c26ba1ec29575e6e8127e Mon Sep 17 00:00:00 2001 From: Sebastian Herrlinger Date: Tue, 30 Jun 2026 13:14:36 +0200 Subject: [PATCH] debug: run Windows repro on hosted runners --- .github/workflows/test.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5f107b569d..9eda2118ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -160,12 +160,22 @@ jobs: windows-opentui-repro: if: ${{ github.event_name == 'workflow_dispatch' && inputs.windows_opentui_repro == true }} - name: windows opentui repro (${{ matrix.version }}) + name: windows opentui repro (${{ matrix.version }}, ${{ matrix.host }}) strategy: fail-fast: false matrix: - version: ["1.17.9", "1.17.10", "1.17.11"] - runs-on: blacksmith-4vcpu-windows-2025 + include: + - version: "1.17.9" + host: windows-latest + - version: "1.17.10" + host: windows-latest + - version: "1.17.11" + host: windows-latest + - version: "1.17.10" + host: windows-2022 + - version: "1.17.10" + host: blacksmith-4vcpu-windows-2025 + runs-on: ${{ matrix.host }} defaults: run: shell: pwsh