From 2ff29ec7d2a22376bd72c01a52af5e6157fac5e7 Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Tue, 29 Oct 2024 20:35:09 -0400 Subject: [PATCH] FetchSentryCLI.cmake: Bump to 2.38.0 --- .ci/githubactions/FetchSentryCLI.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/githubactions/FetchSentryCLI.cmake b/.ci/githubactions/FetchSentryCLI.cmake index f282c9f3303..066d503d854 100644 --- a/.ci/githubactions/FetchSentryCLI.cmake +++ b/.ci/githubactions/FetchSentryCLI.cmake @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.19...3.30) -set(sentry_cli_version "2.32.1") # Note: When updating, must also update all of the sentry_cli_dl_sha512 below! +set(sentry_cli_version "2.38.0") # Note: When updating, must also update all of the sentry_cli_dl_sha512 below! # Manually query the CMAKE_HOST_SYSTEM_PROCESSOR # See: https://gitlab.kitware.com/cmake/cmake/-/issues/25151 @@ -14,20 +14,20 @@ set(_exe_suffix "") if(CMAKE_HOST_SYSTEM_NAME MATCHES "Windows") if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "^x86$") set(sentry_cli_dl_url "https://github.com/getsentry/sentry-cli/releases/download/${sentry_cli_version}/sentry-cli-Windows-i686.exe") - set(sentry_cli_dl_sha512 "de76de02e389a1c9f7c46d35d89097c4a32ff40d2b423143eda24068ce540e7f9e3d989723cda4928c394cdeda26ebfb2f0e2182124eea1b38c3e1296b03191d") + set(sentry_cli_dl_sha512 "60d004fc8df9003978596dbc45e5dba8350d47ea8535a0c60875aa937e6159911b345c817111932ae68ec71106e2c6712f8e52c3bf41086ad08db379796b575c") else() # just default to x64 otherwise set(sentry_cli_dl_url "https://github.com/getsentry/sentry-cli/releases/download/${sentry_cli_version}/sentry-cli-Windows-x86_64.exe") - set(sentry_cli_dl_sha512 "45abc55491443e6b228339bbd6bcf74dab07d08093a9a1e249d214a88c3e88aade20198d35e2f89a8614b1100c08420d19bfb3d6011724f069c83af766cf2a0e") + set(sentry_cli_dl_sha512 "427c3e1b7495a9b6c1d3d251281a37c13e71260ef05c52837b31c0c8348910047f3403855d014bf1701f18787849e2403d7ddc869b9d1b8d4985fccf0e530306") endif() set(_exe_suffix ".exe") elseif(CMAKE_HOST_SYSTEM_NAME MATCHES "Darwin") set(sentry_cli_dl_url "https://github.com/getsentry/sentry-cli/releases/download/${sentry_cli_version}/sentry-cli-Darwin-universal") - set(sentry_cli_dl_sha512 "6ab3a2d6b4e2a8ab2742478eee0bbbee96bbede600155e43650676f3925b6d0813a602498b1a1e9f962fb9d8a922459389259bd1d3a9646d6d21a18abe9ed90c") + set(sentry_cli_dl_sha512 "42c2dbbf694dcce647ccafa15fa482e0736fc50c0c50ffaf7abe02457b106b7f1f9a5b5114b3a2853aa56c5b8e957a84dc9b952c2f1f84c94054280544e7ac9f") elseif(CMAKE_HOST_SYSTEM_NAME MATCHES "Linux") if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "^x86_64$") set(sentry_cli_dl_url "https://github.com/getsentry/sentry-cli/releases/download/${sentry_cli_version}/sentry-cli-Linux-x86_64") - set(sentry_cli_dl_sha512 "17167bece1e852073aae563bd9f3d482e83ef263566d56c5c37480eb6b58d6ec3e938cae85c0a23b30b2fa26d77319a7c217495722664c2ab00ec47665c7472c") + set(sentry_cli_dl_sha512 "71c52338f35e7afe1b452abfbfba8b070d7fc770ce7fa3016962aed8eae29b3f6c09c1758574a7f6fe63c9e18aaca465793c874716459e8d35a3dbbe01e44abe") else() message(FATAL_ERROR "Script does not currently support platform: ${CMAKE_HOST_SYSTEM_NAME} and ARCH: ${CMAKE_HOST_SYSTEM_PROCESSOR}") endif()