File tree Expand file tree Collapse file tree 4 files changed +72
-11
lines changed Expand file tree Collapse file tree 4 files changed +72
-11
lines changed Original file line number Diff line number Diff line change 88 </Dependency >
99 </ProductDependencies >
1010 <ToolsetDependencies >
11- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.24515.3 " >
11+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.24527.1 " >
1212 <Uri >https://github.com/dotnet/arcade</Uri >
13- <Sha >31624193093a13f765ab5382509e693911264509 </Sha >
13+ <Sha >bee0a0f7b1e68e88c63261e127beee2ed06c6d13 </Sha >
1414 </Dependency >
1515 <!-- Intermediate is necessary for source build. -->
16- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.24515.3 " >
16+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.24527.1 " >
1717 <Uri >https://github.com/dotnet/arcade</Uri >
18- <Sha >31624193093a13f765ab5382509e693911264509 </Sha >
18+ <Sha >bee0a0f7b1e68e88c63261e127beee2ed06c6d13 </Sha >
1919 <SourceBuild RepoName =" arcade" ManagedOnly =" true" />
2020 </Dependency >
21- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 10.0.0-beta.24515.3 " >
21+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 10.0.0-beta.24527.1 " >
2222 <Uri >https://github.com/dotnet/arcade</Uri >
23- <Sha >31624193093a13f765ab5382509e693911264509 </Sha >
23+ <Sha >bee0a0f7b1e68e88c63261e127beee2ed06c6d13 </Sha >
2424 </Dependency >
25- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Packaging" Version =" 10.0.0-beta.24515.3 " >
25+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Packaging" Version =" 10.0.0-beta.24527.1 " >
2626 <Uri >https://github.com/dotnet/arcade</Uri >
27- <Sha >31624193093a13f765ab5382509e693911264509 </Sha >
27+ <Sha >bee0a0f7b1e68e88c63261e127beee2ed06c6d13 </Sha >
2828 </Dependency >
2929 </ToolsetDependencies >
3030</Dependencies >
Original file line number Diff line number Diff line change 66 <PreReleaseVersionIteration >1</PreReleaseVersionIteration >
77 </PropertyGroup >
88 <PropertyGroup >
9- <MicrosoftDotNetBuildTasksPackagingVersion >10.0.0-beta.24515.3 </MicrosoftDotNetBuildTasksPackagingVersion >
9+ <MicrosoftDotNetBuildTasksPackagingVersion >10.0.0-beta.24527.1 </MicrosoftDotNetBuildTasksPackagingVersion >
1010 </PropertyGroup >
1111</Project >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 33 "dotnet" : " 9.0.100-rc.2.24474.11"
44 },
55 "msbuild-sdks" : {
6- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.24515.3 " ,
7- "Microsoft.DotNet.Helix.Sdk" : " 10.0.0-beta.24515.3 " ,
6+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.24527.1 " ,
7+ "Microsoft.DotNet.Helix.Sdk" : " 10.0.0-beta.24527.1 " ,
88 "Microsoft.Build.Traversal" : " 3.4.0"
99 }
1010}
You can’t perform that action at this time.
0 commit comments