From dd9dfecbe4767c6b7d811ece6f23bbd87bcf7542 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Tue, 16 Jun 2026 07:16:26 +0000 Subject: [PATCH] ci(windows): drop paths filter (trigger reliability) + NO_COLOR runner logs The paths filter wasn't dispatching the run on the newly-added workflow (the runner is healthy and 'declare successfully', but received no task). Match apple.yml: trigger on every push to main + PRs. Also set NO_COLOR in the daemon wrapper so runner.log is plain text (the ANSI spinner garbled it). Co-Authored-By: Claude Opus 4.8 --- .gitea/workflows/windows.yml | 12 ------------ scripts/ci/setup-windows-runner.ps1 | 1 + 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/.gitea/workflows/windows.yml b/.gitea/workflows/windows.yml index 80c2956..dd05912 100644 --- a/.gitea/workflows/windows.yml +++ b/.gitea/workflows/windows.yml @@ -11,19 +11,7 @@ name: windows on: push: branches: [main] - paths: - - 'crates/punktfunk-client-windows/**' - - 'crates/punktfunk-core/**' - - 'Cargo.lock' - - 'Cargo.toml' - - '.gitea/workflows/windows.yml' pull_request: - paths: - - 'crates/punktfunk-client-windows/**' - - 'crates/punktfunk-core/**' - - 'Cargo.lock' - - 'Cargo.toml' - - '.gitea/workflows/windows.yml' workflow_dispatch: jobs: diff --git a/scripts/ci/setup-windows-runner.ps1 b/scripts/ci/setup-windows-runner.ps1 index 5040bd1..5ba8a16 100644 --- a/scripts/ci/setup-windows-runner.ps1 +++ b/scripts/ci/setup-windows-runner.ps1 @@ -83,6 +83,7 @@ if (-not (Test-Path "C:\Users\Public\.rustup\settings.toml")) { # --- daemon env wrapper (the box's MSVC/WinUI/FFmpeg toolchain) --- $wrapper = "$RunnerHome\run-runner.ps1" @' +$env:NO_COLOR = "1" $env:CARGO_HOME = "C:\Users\Public\.cargo" $env:RUSTUP_HOME = "C:\Users\Public\.rustup" $env:CMAKE_POLICY_VERSION_MINIMUM = "3.5"