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

fix not working jobs

parent 6fa63553
Branches
Tags
No related merge requests found
Pipeline #24662 canceled
......@@ -11,19 +11,13 @@ build:
- wget -UseBasicParsing -OutFile winsdksetup.exe https://download.microsoft.com/download/b/8/5/b85bd06f-491c-4c1c-923e-75ce2fe2378e/windowssdk/winsdksetup.exe
- $env:Path += ';C:\php'
- ./winsdksetup.exe /layout C:\Win10SdkSetup /quiet
- sleep 10
- $job = Start-Job { & C:\Win10SdkSetup\winsdksetup.exe /installpath "C:\Win10SDK" /features + /quiet /norestart }
- Wait-Job $job
- Receive-Job $job
- $env:Path += ';C:\Win10SDK'
- sleep 60
- wget -UseBasicParsing -OutFile C:\git-setup.exe https://github.com/git-for-windows/git/releases/download/v2.42.0.windows.2/PortableGit-2.42.0.2-64-bit.7z.exe
- $job = Start-Job { C:\git-setup.exe -o"C:\git" -y }
- Wait-Job $job
- Receive-Job $job
- start -Wait -FilePath C:\git-setup.exe -ArgumentList '-o"C:\git" -y'
- $env:Path += ';C:\git\bin'
- sleep 10
- wget -UseBasicParsing -OutFile C:\vs_buildtools.exe https://aka.ms/vs/17/release/vs_buildtools.exe
- start -Wait -FilePath C:\vs_buildtools.exe -ArgumentList '--wait --norestart --nocache --installPath "C:\VC" --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64'
- wget -UseBasicParsing -OutFile otel.zip https://github.com/open-telemetry/opentelemetry-php-instrumentation/archive/refs/heads/main.zip
- Expand-Archive -LiteralPath ./otel.zip -DestinationPath C:\otel-php
- cd C:\otel-php\/opentelemetry-php-instrumentation-main\ext
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment