From 8740943b4668352847e9256d5094bb13989b0c5e Mon Sep 17 00:00:00 2001 From: Aleksandr Neychev Date: Tue, 11 Aug 2026 02:31:25 +0500 Subject: [PATCH] add smoke workflow for the self-hosted Windows runner Checks that the host-mode runner picks jobs up and that the toolchain and the redirected temp/NuGet paths are visible inside a job. Co-Authored-By: Claude Opus 5 (1M context) --- .gitea/workflows/smoke.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000..029023d --- /dev/null +++ b/.gitea/workflows/smoke.yml @@ -0,0 +1,22 @@ +name: smoke + +on: [push, workflow_dispatch] + +jobs: + host: + runs-on: windows-x64 + defaults: + run: + shell: pwsh + steps: + - uses: actions/checkout@v4 + + - name: Report the runner environment + run: | + "whoami: $(whoami)" + "TEMP: $env:TEMP" + "NUGET_PACKAGES: $env:NUGET_PACKAGES" + "workdir: $PWD" + dotnet --version + node --version + git --version