diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 26cca9aaf..1fd679ea6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -202,18 +202,18 @@ - + https://github.com/dotnet/arcade - c27937680063bcf06804c9fd0466d26a0f9ea4e6 + e2334b2be36919347923d0ec872a46acddb1e385 - + https://github.com/dotnet/arcade - c27937680063bcf06804c9fd0466d26a0f9ea4e6 + e2334b2be36919347923d0ec872a46acddb1e385 - + https://github.com/dotnet/arcade - c27937680063bcf06804c9fd0466d26a0f9ea4e6 + e2334b2be36919347923d0ec872a46acddb1e385 https://github.com/dotnet/arcade-services @@ -232,9 +232,9 @@ e5e8761172f338331f5df83eaea9abdf9a2dc1aa - + https://github.com/dotnet/sourcelink - 23bda65700e70b6697390dcc4e0f87e2dfbce63a + 4d2c8bf58e8cb7900ec2d9077c155572e2d3cd88 diff --git a/eng/Versions.props b/eng/Versions.props index d57ab6d27..18e766024 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -36,7 +36,7 @@ - 8.0.0-beta.23314.1 + 8.0.0-beta.23316.6 diff --git a/eng/common/dotnet-install.sh b/eng/common/dotnet-install.sh index abd045a32..7e69e3a9e 100755 --- a/eng/common/dotnet-install.sh +++ b/eng/common/dotnet-install.sh @@ -54,6 +54,10 @@ cpuname=$(uname -m) case $cpuname in arm64|aarch64) buildarch=arm64 + if [ "$(getconf LONG_BIT)" -lt 64 ]; then + # This is 32-bit OS running on 64-bit CPU (for example Raspberry Pi OS) + buildarch=arm + fi ;; loongarch64) buildarch=loongarch64 diff --git a/global.json b/global.json index 82d1ee8fa..3be6cec01 100644 --- a/global.json +++ b/global.json @@ -11,7 +11,7 @@ "cmake": "3.21.0" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23314.1", - "Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.23314.1" + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23316.6", + "Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.23316.6" } }