Skip to content
Snippets Groups Projects
Commit eefa0ed0 authored by Brad King's avatar Brad King
Browse files

ci: update to use CMake 3.19.3

parent 9b96fbc3
No related branches found
No related tags found
No related merge requests found
$erroractionpreference = "stop"
$version = "3.19.0"
$sha256sum = "67BBDA67C98C5F0789199FE1DB650F12274A6AD40FD8CAE88D208029AC618905"
$version = "3.19.3"
$sha256sum = "3838E11A0DB08F97D687F061882A1E52807010A313F3AC716015B3587CA3F20E"
$filename = "cmake-$version-win64-x64"
$tarball = "$filename.zip"
......
......@@ -2,21 +2,21 @@
set -e
readonly version="3.19.0"
readonly version="3.19.3"
case "$( uname -s )" in
Linux)
case "$(uname -s)-$(uname -m)" in
Linux-x86_64)
shatool="sha256sum"
sha256sum="5446cdee900e906e46162a5a7be9b4542bb5e886041cf8cffeda62aae2696ccf"
platform="Linux"
sha256sum="c18b65697e9679e5c88dccede08c323cd3d3730648e59048047bba82097e0ffc"
platform="Linux-x86_64"
;;
Darwin)
Darwin-*)
shatool="shasum -a 256"
sha256sum="315eb5500753f797075b6ea43189420e97b0b9f32c8fc87ec94ba1d80b72eb7f"
platform="Darwin"
sha256sum="a6b79ad05f89241a05797510e650354d74ff72cc988981cdd1eb2b3b2bda66ac"
platform="macos-universal"
;;
*)
echo "Unrecognized platform $( uname -s )"
echo "Unrecognized platform $(uname -s)-$(uname -m)"
exit 1
;;
esac
......@@ -24,7 +24,7 @@ readonly shatool
readonly sha256sum
readonly platform
readonly filename="cmake-$version-$platform-x86_64"
readonly filename="cmake-$version-$platform"
readonly tarball="$filename.tar.gz"
cd .gitlab
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment