We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to build the toolchain on Azure VMs we have to install the Chocolatey package manger for Windows:
steps: - name: Install Chocolatey run: | if (-not $env:ChocolateyInstall -or -not (Test-Path "$env:ChocolateyInstall")) { Invoke-Expression ((New-Object net.webclient).DownloadString("${{ inputs.install-script }}")) choco feature enable -n allowGlobalConfirmation # Propagate the updated path to subsequent steps in the current job. echo "$env:ChocolateyInstall\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append }
It would be faster if Chocolatey were pre-installed like it is on the GitHub Windows runner images.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to build the toolchain on Azure VMs we have to install the Chocolatey package manger for Windows:
It would be faster if Chocolatey were pre-installed like it is on the GitHub Windows runner images.
The text was updated successfully, but these errors were encountered: