diff options
author | Brad King <brad.king@kitware.com> | 2022-08-03 13:37:37 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-08-03 13:37:55 (GMT) |
commit | 734c2f8944e2f2675fcfed455d80312b586eeae4 (patch) | |
tree | c8ba3899d0be3306f157ff3ed6aa1f74a2100e7c /.gitlab | |
parent | e170549eb6ccddb87d88c36ca388e05047800bd2 (diff) | |
parent | 9ff7fffbf492ae32a57b2768a3025aa3521aabe4 (diff) | |
download | CMake-734c2f8944e2f2675fcfed455d80312b586eeae4.zip CMake-734c2f8944e2f2675fcfed455d80312b586eeae4.tar.gz CMake-734c2f8944e2f2675fcfed455d80312b586eeae4.tar.bz2 |
Merge topic 'ci-wix-host'
9ff7fffbf4 ci: host WiX 3.14.0.6526 binaries ourselves
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7538
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci/wix.ps1 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab/ci/wix.ps1 b/.gitlab/ci/wix.ps1 index a690533..b7cb3f3 100755 --- a/.gitlab/ci/wix.ps1 +++ b/.gitlab/ci/wix.ps1 @@ -2,13 +2,14 @@ $erroractionpreference = "stop" $release = "v3.14.0.6526" $sha256sum = "4C89898DF3BCAB13E12F7CA54399C35AD273475AD2CB6284611D00AE2D063C2C" -$filename = "wix314-binaries" +$filename = "wix-3.14.0.6526-win-i386" $tarball = "$filename.zip" $outdir = $pwd.Path $outdir = "$outdir\.gitlab" $ProgressPreference = 'SilentlyContinue' -Invoke-WebRequest -Uri "https://wixtoolset.org/downloads/$release/$tarball" -OutFile "$outdir\$tarball" +#Invoke-WebRequest -Uri "https://wixtoolset.org/downloads/$release/$tarball" -OutFile "$outdir\$tarball" +Invoke-WebRequest -Uri "https://cmake.org/files/dependencies/$tarball" -OutFile "$outdir\$tarball" $hash = Get-FileHash "$outdir\$tarball" -Algorithm SHA256 if ($hash.Hash -ne $sha256sum) { exit 1 |