File tree Expand file tree Collapse file tree 6 files changed +41
-14
lines changed Expand file tree Collapse file tree 6 files changed +41
-14
lines changed Original file line number Diff line number Diff line change 8
8
</Dependency >
9
9
</ProductDependencies >
10
10
<ToolsetDependencies >
11
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.24312 .1" >
11
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" 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
15
<!-- Intermediate is necessary for source build. -->
16
- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.24312 .1" >
16
+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.24314 .1" >
17
17
<Uri >https://github.com/dotnet/arcade</Uri >
18
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
18
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
19
19
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
20
20
</Dependency >
21
- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 9.0.0-beta.24312 .1" >
21
+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 9.0.0-beta.24314 .1" >
22
22
<Uri >https://github.com/dotnet/arcade</Uri >
23
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
23
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
24
24
</Dependency >
25
- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Packaging" Version =" 9.0.0-beta.24312 .1" >
25
+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Packaging" Version =" 9.0.0-beta.24314 .1" >
26
26
<Uri >https://github.com/dotnet/arcade</Uri >
27
- <Sha >a7f9929d8dfde18489958185375b50ad49fa7a58 </Sha >
27
+ <Sha >92a725aa4d9d6c13dc5229597b51b0b165b8b535 </Sha >
28
28
</Dependency >
29
29
</ToolsetDependencies >
30
30
</Dependencies >
Original file line number Diff line number Diff line change 6
6
<PreReleaseVersionIteration >1</PreReleaseVersionIteration >
7
7
</PropertyGroup >
8
8
<PropertyGroup >
9
- <MicrosoftDotNetBuildTasksPackagingVersion >9.0.0-beta.24312 .1</MicrosoftDotNetBuildTasksPackagingVersion >
9
+ <MicrosoftDotNetBuildTasksPackagingVersion >9.0.0-beta.24314 .1</MicrosoftDotNetBuildTasksPackagingVersion >
10
10
</PropertyGroup >
11
11
</Project >
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
},
5
5
"msbuild-sdks" : {
6
- "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.24312 .1" ,
7
- "Microsoft.DotNet.Helix.Sdk" : " 9.0.0-beta.24312 .1" ,
6
+ "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.24314 .1" ,
7
+ "Microsoft.DotNet.Helix.Sdk" : " 9.0.0-beta.24314 .1" ,
8
8
"Microsoft.Build.Traversal" : " 3.4.0"
9
9
}
10
10
}
You can’t perform that action at this time.
0 commit comments