From 07212780d3136a206480796be7281e8508dd1ddb Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Sat, 7 Mar 2020 13:16:50 +0200 Subject: [PATCH] CI: Use an HTTPS download link for LLVM (#1254) --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8f7b03d77e..aa16e16a76 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -170,7 +170,7 @@ jobs: # Note: libclang is pre-installed on the macOS and linux images. if: matrix.os == 'windows-latest' run: | - Invoke-WebRequest http://releases.llvm.org/9.0.0/LLVM-9.0.0-win64.exe -OutFile llvm-installer.exe + Invoke-WebRequest https://releases.llvm.org/9.0.0/LLVM-9.0.0-win64.exe -OutFile llvm-installer.exe 7z x llvm-installer.exe -oC:\llvm-binary Write-Host ::set-env name=LIBCLANG_PATH::C:\llvm-binary\bin\libclang.dll Write-Host ::add-path::C:\llvm-binary\bin