From ba20d4bbf4968a60eb5368b92c7bed5bd3637fdd Mon Sep 17 00:00:00 2001 From: Erik Date: Wed, 19 Aug 2026 10:11:26 +0200 Subject: [PATCH] ci: add Gitea Actions smoke workflow for the self-hosted Windows runner --- .gitea/workflows/smoke.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/smoke.yml diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml new file mode 100644 index 00000000..f161eaf8 --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,21 @@ +# Gitea Actions smoke test for the self-hosted Windows runner (RARE-win). +# Deliberately uses NO `uses:` steps: Gitea resolves actions from +# data.forgejo.org, which does not carry actions/checkout@v6 or +# actions/setup-dotnet@v4, so the .github workflows cannot run here as-is. +# This proves runner execution independently of that. +name: smoke +on: + workflow_dispatch: + +jobs: + windows-smoke: + runs-on: windows-latest + steps: + - name: Report the build environment + shell: pwsh + run: | + Write-Host "host : $env:COMPUTERNAME" + Write-Host "user : $env:USERNAME" + Write-Host "cores : $env:NUMBER_OF_PROCESSORS" + dotnet --list-sdks + git --version