Browse Source

chatgpt yolo

flabbet 11 months ago
parent
commit
812a052533
1 changed files with 4 additions and 1 deletions
  1. 4 1
      pipelines/Windows/tests-x64.yml

+ 4 - 1
pipelines/Windows/tests-x64.yml

@@ -26,19 +26,22 @@ steps:
     script: |
       tar -xzf $(wasiName).tar.gz
 
+steps:
 - task: PowerShell@2
   displayName: 'Set Environment Path for WASI SDK'
   inputs:
     targetType: 'inline'
     script: |
       $env:WASI_SDK_PATH = "$(Get-Location)\$(wasiName)\bin"
+      Write-Host "##vso[task.setvariable variable=WASI_SDK_PATH]$env:WASI_SDK_PATH"
 
 - task: PowerShell@2
   displayName: 'Verify Environment Path'
   inputs:
     targetType: 'inline'
     script: |
-      echo "Environment path set to: $env:WASI_SDK_PATH"
+      Write-Host "Environment path set to: $env:WASI_SDK_PATH"
+
 
 - task: NuGetToolInstaller@1