add smoke workflow for the self-hosted Windows runner
smoke / host (push) Failing after 4s

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) <noreply@anthropic.com>
This commit is contained in:
2026-08-11 02:31:25 +05:00
co-authored by Claude Opus 5
parent 86c0085472
commit 8740943b46
+22
View File
@@ -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