Home
last modified time | relevance | path

Searched +full:invoke +full:- +full:webrequest (Results 1 – 9 of 9) sorted by relevance

/third_party/protobuf/csharp/
Dinstall_dotnet_sdk.ps12 # Install dotnet SDK using the official dotnet-install.ps1 script
4 Set-StrictMode -Version 2
7 # avoid "Unknown error on a send" in Invoke-WebRequest
10 $InstallScriptUrl = 'https://dot.net/v1/dotnet-install.ps1'
11 $InstallScriptPath = Join-Path "$env:TEMP" 'dotnet-install.ps1'
14 Write-Host "Downloading install script: $InstallScriptUrl => $InstallScriptPath"
15 Invoke-WebRequest -Uri $InstallScriptUrl -OutFile $InstallScriptPath
19 &$InstallScriptPath -Version 2.1.802
20 &$InstallScriptPath -Version 3.1.301
/third_party/libxml2/
D.gitlab-ci.yml3 # for libxslt, that's why we need git and libgcrypt-dev.
7 # RUN apt-get update && \
8 # apt-get upgrade -y && \
9 # apt-get install -y --no-install-recommends \
10 # curl git ca-certificates \
11 # autoconf automake libtool pkg-config \
13 # zlib1g-dev liblzma-dev libgcrypt-dev \
14 # python-dev python3-dev \
20 - |
21 ln -s /tests/xmlconf
[all …]
/third_party/mesa3d/.gitlab-ci/windows/
Dmesa_deps_test.ps11 Get-Date
2 Write-Host "Downloading Freeglut"
4 $freeglut_zip = 'freeglut-MSVC.zip'
7 For ($i = 0; $i -lt 5; $i++) {
8 Invoke-WebRequest -Uri $freeglut_url -OutFile $freeglut_zip
16 Write-Host "Failed to download Freeglut"
20 Get-Date
21 Write-Host "Installing Freeglut"
22 Expand-Archive $freeglut_zip -DestinationPath C:\
24 Write-Host "Failed to install Freeglut"
[all …]
Dmesa_deps_choco.ps12 Get-Date
3 Write-Host "Updating TLS certificate store"
4 Remove-Item -Recurse -Force -ErrorAction SilentlyContinue "_tlscerts" | Out-Null
5 $certdir = (New-Item -ItemType Directory -Name "_tlscerts")
6 certutil -syncwithWU "$certdir"
7 Foreach ($file in (Get-ChildItem -Path "$certdir\*" -Include "*.crt")) {
8 Import-Certificate -FilePath $file -CertStoreLocation Cert:\LocalMachine\Root | Out-Null
10 Remove-Item -Recurse -Path $certdir
13 Get-Date
14 Write-Host "Installing Chocolatey"
[all …]
Dmesa_deps_vs2019.ps17 Get-Date
8 Write-Host "Downloading Visual Studio 2019 build tools"
9 Invoke-WebRequest -Uri $msvc_2019_url -OutFile C:\vs_buildtools.exe
11 Get-Date
12 Write-Host "Installing Visual Studio 2019"
14 # https://docs.microsoft.com/en-us/visualstudio/install/command-line-parameter-examples?view=vs-2019
16 # https://docs.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-build-tools?view=v…
17 # https://docs.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-community?view=vs-
18 Start-Process -NoNewWindow -Wait -FilePath C:\vs_buildtools.exe `
19 -ArgumentList `
[all …]
/third_party/icu/
D.appveyor.yml11 - c:\icu-ci-cache
14 # - The VS2017 build is disabled (commented out) below, as we build both VS2015 and VS2017
17 # - For the Cygwin build, the CYG_MIRROR URL used to use the "Cygwin Time Machine" archive
18 # in order to pull a previous version of Cygwin, v2.11.2-1 (with timestamp 1550062412).
23 # In order to speed the builds up we use the "-X" or "--no-verify" option to skip checking
28 ICU_CI_CACHE: c:\icu-ci-cache
29 CYG_URL: https://cygwin.com/setup-x86_64.exe
31 CYG_PACKAGES: automake,gcc-core,gcc-g++,make,pkg-config,perl,python3
32 CYG_ROOT: c:\cygwin-root
33 CYG_CACHE: '%ICU_CI_CACHE%\cygwin64-v3'
[all …]
/third_party/python/PCbuild/
Dfind_python.bat11 @rem First argument -q means only show the command in output
12 @if '%1' EQU '-q' (shift && set _Py_Quiet=1)
18 @rem parse the next if statement - incorrect quoting in the multi-arg
39 …thonx86\tools\python.exe" ("%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe" -Ec "import sys; asser…
42 @if NOT "%HOST_PYTHON%"=="" @%HOST_PYTHON% -Ec "import sys; assert sys.version_info[:2] >= (3, 9)" …
45 @for %%p in (3.10 3.9) do @py -%%p -EV >nul 2>&1 && (set PYTHON=py -%%p) && (set _Py_Python_Source=…
59 @powershell.exe -Command Invoke-WebRequest %_Py_NUGET_URL% -OutFile '%_Py_NUGET%'
61 @%_Py_HOST_PYTHON% -E "%_Py_D%\urlretrieve.py" "%_Py_NUGET_URL%" "%_Py_NUGET%"
66 @"%_Py_NUGET%" install pythonx86 -ExcludeVersion -OutputDirectory "%_Py_EXTERNALS_DIR%"
67 @rem Quote it here; it's not quoted later because "py -x.y" wouldn't work
Dprepare_libffi.bat8 echo of python-source-deps clone of libffi branch
13 echo Tested with cygwin-x86 from https://www.cygwin.com/install.html
25 echo. -x64 enable x64 build
26 echo. -x86 enable x86 build
27 echo. -arm32 enable arm32 build
28 echo. -arm64 enable arm64 build
29 echo. -? this help
30 echo. --install-cygwin install cygwin to c:\cygwin
46 if /I "%1"=="-x64" (set BUILD_X64=1) & shift & goto :CheckOpts
47 if /I "%1"=="-x86" (set BUILD_X86=1) & shift & goto :CheckOpts
[all …]
/third_party/opencl-headers/.github/workflows/
Dwindows.yml7 runs-on: windows-latest
16 - VER: v141
18 GEN: Ninja Multi-Config
22 NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip
28 - uses: actions/checkout@v2
30 - name: Cache Ninja install
31 if: matrix.GEN == 'Ninja Multi-Config'
32 id: ninja-install
37 key: ${{runner.os}}-ninja-${{env.NINJA_URL}}
39 - name: Install Ninja
[all …]