From 82b1992011e33b917a1cf7c46fc4f39742614b54 Mon Sep 17 00:00:00 2001 From: Elias Toivola Date: Thu, 8 May 2025 10:54:54 +0300 Subject: [PATCH] wasm: set cache files for Emscripten 4.0.7 Files were prebuild by cloning emsdk repo in their respective VM produced by Coin provisioning, and running './emsdk install 4.0.7' and './emsdk activate 4.0.7' in macOS 15 and OpenSUSE 15.6. And just './emsdk install 4.0.7' in Windows 10. This amends 5510396f4d9f175e7f61a953ea0722ce57d059d4 Pick-to: 6.10 Task-number: COIN-1232 Change-Id: Ifa768173093c4b6b90599d0fff8b34a1db8b1bbc Reviewed-by: Lorn Potter --- coin/provisioning/common/unix/emsdk.sh | 4 ++-- coin/provisioning/common/windows/emsdk.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coin/provisioning/common/unix/emsdk.sh b/coin/provisioning/common/unix/emsdk.sh index 6c2a0a5e..d7cfc20e 100755 --- a/coin/provisioning/common/unix/emsdk.sh +++ b/coin/provisioning/common/unix/emsdk.sh @@ -13,10 +13,10 @@ versionNode="v20.18.0" tarBallVersion="${version//./_}" if uname -a | grep -q Darwin; then tarBallPackage="emsdk_macos_${tarBallVersion}.tar.gz" - sha="eafd7b96ab12d84183d2eaa62e8d39bb12c252bf" + sha="c3d2df45685b68e5d69e09017084d26783eda2dd" else tarBallPackage="emsdk_linux_${tarBallVersion}.tar.gz" - sha="047a3da9048edc71fb56af544c4bb2448d6c0644" + sha="20f7782ca4a9088fe91405b16c6fed630e91dcd6" fi cacheUrl="https://ci-files01-hki.ci.qt.io/input/emsdk/${tarBallPackage}" target="/tmp/${tarBallPackage}" diff --git a/coin/provisioning/common/windows/emsdk.ps1 b/coin/provisioning/common/windows/emsdk.ps1 index 37547123..9fce023e 100644 --- a/coin/provisioning/common/windows/emsdk.ps1 +++ b/coin/provisioning/common/windows/emsdk.ps1 @@ -9,7 +9,7 @@ $version = "4.0.7" $zipVersion = $version -replace '\.', "_" $temp = "$env:tmp" $cacheUrl = "https://ci-files01-hki.ci.qt.io/input/emsdk/emsdk_windows_${zipVersion}.zip" -$sha = "4d05e378575cb3d74e2740b121730ba1f5822f27" +$sha = "d433b8353df4a75ba035fc618f520790b4fb7ee2" # Python used for '.\emsdk install' $pythonPath = [System.Environment]::GetEnvironmentVariable("PYTHON3_PATH", "Machine")