Skip to content
Snippets Groups Projects
Commit da6e599b authored by Jonas Leder's avatar Jonas Leder
Browse files

try waiting for sdk install

parent a25eb7c3
No related branches found
No related tags found
No related merge requests found
Pipeline #24629 failed
...@@ -13,7 +13,9 @@ build: ...@@ -13,7 +13,9 @@ build:
- ./winsdksetup.exe /layout .\Win10SDK /quiet - ./winsdksetup.exe /layout .\Win10SDK /quiet
- sleep 10 - sleep 10
- cd .\Win10SDK - cd .\Win10SDK
- ./winsdksetup.exe /installpath "C:\Win10SDK" /features + /quiet /norestart - $job = Start-Job { ./winsdksetup.exe /installpath "C:\Win10SDK" /features + /quiet /norestart }
- Wait-Job $job
- Receive-Job $job
- $env:Path += ';C:\Win10SDK' - $env:Path += ';C:\Win10SDK'
- sleep 60 - sleep 60
- ls C:\php - ls C:\php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment