File tree Expand file tree Collapse file tree 6 files changed +40
-13
lines changed Expand file tree Collapse file tree 6 files changed +40
-13
lines changed Original file line number Diff line number Diff line change 4
4
<ProductDependencies >
5
5
</ProductDependencies >
6
6
<ToolsetDependencies >
7
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.24312 .1" >
7
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.24314 .1" >
8
8
<Uri >https://github.com/dotnet/arcade</Uri >
9
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
9
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
10
10
</Dependency >
11
- <Dependency Name =" Microsoft.DotNet.GenFacades" Version =" 9.0.0-beta.24312 .1" >
11
+ <Dependency Name =" Microsoft.DotNet.GenFacades" Version =" 9.0.0-beta.24314 .1" >
12
12
<Uri >https://github.com/dotnet/arcade</Uri >
13
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
13
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
14
14
</Dependency >
15
- <Dependency Name =" Microsoft.DotNet.XUnitExtensions" Version =" 9.0.0-beta.24312 .1" >
15
+ <Dependency Name =" Microsoft.DotNet.XUnitExtensions" Version =" 9.0.0-beta.24314 .1" >
16
16
<Uri >https://github.com/dotnet/arcade</Uri >
17
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
17
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
18
18
</Dependency >
19
19
</ToolsetDependencies >
20
20
</Dependencies >
Original file line number Diff line number Diff line change 18
18
</PropertyGroup >
19
19
<!-- Arcade dependencies -->
20
20
<PropertyGroup >
21
- <MicrosoftDotNetGenFacadesPackageVersion >9.0.0-beta.24312 .1</MicrosoftDotNetGenFacadesPackageVersion >
22
- <MicrosoftDotNetXUnitExtensionsPackageVersion >9.0.0-beta.24312 .1</MicrosoftDotNetXUnitExtensionsPackageVersion >
21
+ <MicrosoftDotNetGenFacadesPackageVersion >9.0.0-beta.24314 .1</MicrosoftDotNetGenFacadesPackageVersion >
22
+ <MicrosoftDotNetXUnitExtensionsPackageVersion >9.0.0-beta.24314 .1</MicrosoftDotNetXUnitExtensionsPackageVersion >
23
23
</PropertyGroup >
24
24
<!-- CoreFx dependencies -->
25
25
<PropertyGroup >
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ __AlpineKeys='
131
131
__Keyring=
132
132
__SkipSigCheck=0
133
133
__UseMirror=0
134
+ __UseDeb822Format=0
134
135
135
136
__UnprocessedBuildArgs=
136
137
while : ; do
@@ -181,7 +182,6 @@ while :; do
181
182
__AlpinePackages=" ${__AlpinePackages// lldb-dev/ } "
182
183
__QEMUArch=riscv64
183
184
__UbuntuArch=riscv64
184
- __UbuntuRepo=" http://deb.debian.org/debian"
185
185
__UbuntuPackages=" ${__UbuntuPackages// libunwind8-dev/ } "
186
186
unset __LLDB_Package
187
187
@@ -288,6 +288,12 @@ while :; do
288
288
__CodeName=jammy
289
289
fi
290
290
;;
291
+ noble) # Ubuntu 24.04
292
+ if [[ " $__CodeName " != " jessie" ]]; then
293
+ __CodeName=noble
294
+ fi
295
+ __UseDeb822Format=1
296
+ ;;
291
297
jessie) # Debian 8
292
298
__CodeName=jessie
293
299
@@ -732,8 +738,11 @@ elif [[ -n "$__CodeName" ]]; then
732
738
fi
733
739
734
740
# shellcheck disable=SC2086
741
+ echo running debootstrap " --variant=minbase" $__Keyring --arch " $__UbuntuArch " " $__CodeName " " $__RootfsDir " " $__UbuntuRepo "
735
742
debootstrap " --variant=minbase" $__Keyring --arch " $__UbuntuArch " " $__CodeName " " $__RootfsDir " " $__UbuntuRepo "
736
- cp " $__CrossDir /$__BuildArch /sources.list.$__CodeName " " $__RootfsDir /etc/apt/sources.list"
743
+ mkdir -p " $__RootfsDir /etc/apt/sources.list.d/"
744
+ grep -q " Types:" " $__CrossDir /$__BuildArch /sources.list.$__CodeName " && filename=" $__CodeName .sources" || filename=" $__CodeName .list"
745
+ cp " $__CrossDir /$__BuildArch /sources.list.$__CodeName " " $__RootfsDir /etc/apt/sources.list.d/$filename "
737
746
chroot " $__RootfsDir " apt-get update
738
747
chroot " $__RootfsDir " apt-get -f -y install
739
748
# shellcheck disable=SC2086
Original file line number Diff line number Diff line change
1
+ Types: deb
2
+ URIs: http://ports.ubuntu.com/ubuntu-ports/
3
+ Suites: noble noble-updates noble-backports
4
+ Components: main universe restricted multiverse
5
+ Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
6
+
7
+ Types: deb
8
+ URIs: http://ports.ubuntu.com/ubuntu-ports/
9
+ Suites: noble-security
10
+ Components: main universe restricted multiverse
11
+ Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
Original file line number Diff line number Diff line change 5
5
[Parameter (Mandatory = $true )][string ] $PackagesPath # Path to where the packages to be validated are
6
6
)
7
7
8
+ # `tools.ps1` checks $ci to perform some actions. Since the post-build
9
+ # scripts don't necessarily execute in the same agent that run the
10
+ # build.ps1/sh script this variable isn't automatically set.
11
+ $ci = $true
12
+ $disableConfigureToolsetImport = $true
13
+ . $PSScriptRoot \..\tools.ps1
14
+
8
15
try {
9
16
& $PSScriptRoot \nuget- verification.ps1 ${PackagesPath} \* .nupkg
10
17
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 9.0.100-preview.4.24267.66 " ,
3
+ "dotnet" : " 9.0.100-preview.5.24307.3 " ,
4
4
"runtimes" : {
5
5
"aspnetcore" : [
6
6
" 3.1.5" ,
11
11
}
12
12
},
13
13
"sdk" : {
14
- "version" : " 9.0.100-preview.4.24267.66 "
14
+ "version" : " 9.0.100-preview.5.24307.3 "
15
15
},
16
16
"msbuild-sdks" : {
17
- "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.24312 .1" ,
17
+ "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.24314 .1" ,
18
18
"Microsoft.DotNet.Helix.Sdk" : " 8.0.0-beta.23409.5"
19
19
}
20
20
}
You can’t perform that action at this time.
0 commit comments