ci: Update to ISPC 1.20.0

This commit is contained in:
Brad King 2023-05-09 11:46:53 -04:00
parent a2fba5967a
commit 44d13f50a2
2 changed files with 11 additions and 6 deletions

View File

@ -1,7 +1,7 @@
$erroractionpreference = "stop"
$version = "1.18.0"
$sha256sum = "9210BB2D9D3711367FACCB37ACF49966696132560B565471C1C6121F4924A17E"
$version = "1.20.0"
$sha256sum = "E212EBFB4E8AFB57ADC103A2579C52673A3CA49610FBC2A5EAE643D3D378548D"
$filename = "ispc-v$version-windows"
$tarball = "$filename.zip"

View File

@ -2,18 +2,23 @@
set -e
readonly version="1.18.0"
readonly version="1.20.0"
case "$(uname -s)-$(uname -m)" in
Linux-x86_64)
shatool="sha256sum"
sha256sum="6c379bb97962e9de7d24fd48b3f7e647dc42be898e9d187948220268c646b692"
sha256sum="e6412b88aa312fcd10c46f92df0149ccc4d99e53552c4ce127aa6c634fe9b308"
platform="linux"
;;
Darwin-arm64)
shatool="shasum -a 256"
sha256sum="62cee043a3a4dbff8c2f6d3885a7e573901bbc1325dd93d50f92904b7ea67fec"
platform="macOS.arm64"
;;
Darwin-x86_64)
shatool="shasum -a 256"
sha256sum="d1435b541182406ff6b18446d31ecceef0eae3aed7654391ae676d3142e0000d"
platform="macOS"
sha256sum="da0f11a048a316081a8ad8170d48b170b2ed7efc3b140fc88b8611238809c8e4"
platform="macOS.x86_64"
;;
*)
echo "Unrecognized platform $(uname -s)-$(uname -m)"