From 6dd3b02534f4b79de4e7a27ba683ead461a1abb8 Mon Sep 17 00:00:00 2001 From: Ping Date: Wed, 9 Sep 2026 15:39:41 +0200 Subject: [PATCH] ci: diagnostic smoke test --- .gitea/workflows/smoke.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/smoke.yml b/.gitea/workflows/smoke.yml index b41f67f..d9a3562 100644 --- a/.gitea/workflows/smoke.yml +++ b/.gitea/workflows/smoke.yml @@ -5,14 +5,14 @@ jobs: smoke: runs-on: windows-latest steps: - - name: Verify host toolchain - shell: bash + - name: Dump environment + shell: powershell run: | - echo "runner.os = ${{ runner.os }}" - echo "host = $(hostname)" - git --version - node --version - npm --version - cargo --version - rustc --version - echo "SMOKE_OK" + Write-Output "PATH=$env:PATH" + Write-Output "--- bash ---"; where.exe bash 2>&1 + Write-Output "--- git ---"; where.exe git 2>&1 + Write-Output "--- cargo ---"; where.exe cargo 2>&1 + Write-Output "--- node ---"; where.exe node 2>&1 + Write-Output "--- powershell ---"; where.exe powershell 2>&1 + - name: Default shell probe + run: echo DEFAULT_SHELL_OK