Skip to content

Commit 86ef9ee

Browse files
[main] Update dependencies from dotnet/arcade (#9997)
[main] Update dependencies from dotnet/arcade
1 parent de09811 commit 86ef9ee

File tree

4 files changed

+72
-11
lines changed

4 files changed

+72
-11
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -165,25 +165,25 @@
165165
</Dependency>
166166
</ProductDependencies>
167167
<ToolsetDependencies>
168-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.24523.2">
168+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.24525.3">
169169
<Uri>https://github.com/dotnet/arcade</Uri>
170-
<Sha>89040b649a6aa8fa9b6bd6ddaad5a637cf091b07</Sha>
170+
<Sha>ee7a468d815a3401b842e23ee336dd9d679d973d</Sha>
171171
</Dependency>
172-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="10.0.0-beta.24523.2">
172+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="10.0.0-beta.24525.3">
173173
<Uri>https://github.com/dotnet/arcade</Uri>
174-
<Sha>89040b649a6aa8fa9b6bd6ddaad5a637cf091b07</Sha>
174+
<Sha>ee7a468d815a3401b842e23ee336dd9d679d973d</Sha>
175175
</Dependency>
176-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="10.0.0-beta.24523.2">
176+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="10.0.0-beta.24525.3">
177177
<Uri>https://github.com/dotnet/arcade</Uri>
178-
<Sha>89040b649a6aa8fa9b6bd6ddaad5a637cf091b07</Sha>
178+
<Sha>ee7a468d815a3401b842e23ee336dd9d679d973d</Sha>
179179
</Dependency>
180180
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.24053.1">
181181
<Uri>https://github.com/dotnet/arcade</Uri>
182182
<Sha>f4e11a15c7b8a949d4a366e792a9843ff6e88cd5</Sha>
183183
</Dependency>
184-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="10.0.0-beta.24523.2">
184+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="10.0.0-beta.24525.3">
185185
<Uri>https://github.com/dotnet/arcade</Uri>
186-
<Sha>89040b649a6aa8fa9b6bd6ddaad5a637cf091b07</Sha>
186+
<Sha>ee7a468d815a3401b842e23ee336dd9d679d973d</Sha>
187187
</Dependency>
188188
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2">
189189
<Uri>https://github.com/dotnet/sourcelink</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<!-- Packages that come from https://github.com/dotnet/arcade -->
5252
<PropertyGroup>
5353
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.24053.1</MicrosoftDotNetApiCompatVersion>
54-
<MicrosoftDotNetCodeAnalysisPackageVersion>10.0.0-beta.24523.2</MicrosoftDotNetCodeAnalysisPackageVersion>
54+
<MicrosoftDotNetCodeAnalysisPackageVersion>10.0.0-beta.24525.3</MicrosoftDotNetCodeAnalysisPackageVersion>
5555
</PropertyGroup>
5656
<!-- Sourcelink -->
5757
<PropertyGroup>
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
# This is a simple script primarily used for CI to install necessary dependencies
6+
#
7+
# Usage:
8+
#
9+
# ./install-dependencies.sh <OS>
10+
11+
os="$(echo "$1" | tr "[:upper:]" "[:lower:]")"
12+
13+
if [ -z "$os" ]; then
14+
. "$(dirname "$0")"/init-os-and-arch.sh
15+
fi
16+
17+
case "$os" in
18+
linux)
19+
if [ -e /etc/os-release ]; then
20+
. /etc/os-release
21+
fi
22+
23+
if [ "$ID" = "debian" ] || [ "$ID_LIKE" = "debian" ]; then
24+
apt update
25+
26+
apt install -y build-essential gettext locales cmake llvm clang lld lldb liblldb-dev libunwind8-dev libicu-dev liblttng-ust-dev \
27+
libssl-dev libkrb5-dev zlib1g-dev pigz
28+
29+
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
30+
elif [ "$ID" = "fedora" ]; then
31+
dnf install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel zlib-devel lttng-ust-devel pigz
32+
elif [ "$ID" = "alpine" ]; then
33+
apk add build-base cmake bash curl clang llvm-dev lld lldb krb5-dev lttng-ust-dev icu-dev zlib-dev openssl-dev pigz
34+
else
35+
echo "Unsupported distro. distro: $ID"
36+
exit 1
37+
fi
38+
;;
39+
40+
osx|maccatalyst|ios|iossimulator|tvos|tvossimulator)
41+
echo "Installed xcode version: $(xcode-select -p)"
42+
43+
export HOMEBREW_NO_INSTALL_CLEANUP=1
44+
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
45+
# Skip brew update for now, see https://github.com/actions/setup-python/issues/577
46+
# brew update --preinstall
47+
brew bundle --no-upgrade --no-lock --file=- <<EOF
48+
brew "cmake"
49+
brew "icu4c"
50+
brew "openssl@3"
51+
brew "pkg-config"
52+
brew "python3"
53+
brew "pigz"
54+
EOF
55+
;;
56+
57+
*)
58+
echo "Unsupported platform. OS: $os"
59+
exit 1
60+
;;
61+
esac

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
}
1313
},
1414
"msbuild-sdks": {
15-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.24523.2",
16-
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.24523.2"
15+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.24525.3",
16+
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.24525.3"
1717
},
1818
"sdk": {
1919
"version": "9.0.100-rc.2.24474.11"

0 commit comments

Comments
 (0)