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