diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-05-20 13:37:45 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-05-22 15:34:14 (GMT) |
commit | 809f9a99165e1e8463a9af398282c8fa01ff761b (patch) | |
tree | ac3b5e758f0c45f8d0b6afd98b32ae74b02abf5e /.gitlab/ci/cmake.ps1 | |
parent | 02c56b71a1f2f66be0ba79f0b3da66bfa3107ce7 (diff) | |
download | CMake-809f9a99165e1e8463a9af398282c8fa01ff761b.zip CMake-809f9a99165e1e8463a9af398282c8fa01ff761b.tar.gz CMake-809f9a99165e1e8463a9af398282c8fa01ff761b.tar.bz2 |
gitlab: add powershell scripts for utilities
Diffstat (limited to '.gitlab/ci/cmake.ps1')
-rwxr-xr-x | .gitlab/ci/cmake.ps1 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab/ci/cmake.ps1 b/.gitlab/ci/cmake.ps1 new file mode 100755 index 0000000..3b42cae --- /dev/null +++ b/.gitlab/ci/cmake.ps1 @@ -0,0 +1,18 @@ +$erroractionpreference = "stop" + +$version = "3.17.2" +$sha256sum = "CF82B1EB20B6FBE583487656FCD496490FFCCDFBCBBA0F26E19F1C9C63B0B041" +$filename = "cmake-$version-win64-x64" +$tarball = "$filename.zip" + +$outdir = $pwd.Path +$outdir = "$outdir\.gitlab" +Invoke-WebRequest -Uri "https://github.com/Kitware/CMake/releases/download/v$version/$tarball" -OutFile "$outdir\$tarball" +$hash = Get-FileHash "$outdir\$tarball" -Algorithm SHA256 +if ($hash.Hash -ne $sha256sum) { + exit 1 +} + +Add-Type -AssemblyName System.IO.Compression.FileSystem +[System.IO.Compression.ZipFile]::ExtractToDirectory("$outdir\$tarball", "$outdir") +Move-Item -Path "$outdir\$filename" -Destination "$outdir\cmake" |