Skip to content

Commit 8f9f6fa

Browse files
[main] Update dependencies from dotnet/arcade, dotnet/sdk, dotnet/source-build-externals (#1194)
* Update dependencies from https://github.com/dotnet/arcade build 20250307.1 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk From Version 10.0.0-beta.25126.4 -> To Version 10.0.0-beta.25157.1 * Update dependencies from https://github.com/dotnet/source-build-externals build 20250306.1 Microsoft.SourceBuild.Intermediate.source-build-externals From Version 10.0.612501 -> To Version 10.0.615601 * Update dependencies from https://github.com/dotnet/sdk build 20250309.6 Microsoft.DotNet.GenAPI.Task From Version 10.0.100-preview.3.25152.3 -> To Version 10.0.100-preview.3.25159.6 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
1 parent 232bcf3 commit 8f9f6fa

8 files changed

+13
-22
lines changed

eng/Version.Details.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
<Dependencies>
33
<ToolsetDependencies>
44
<!-- Intermediate is necessary for source build. -->
5-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="10.0.612501">
5+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="10.0.615601">
66
<Uri>https://github.com/dotnet/source-build-externals</Uri>
7-
<Sha>7e957c8a70dfb4c2f8bae636da7af0be225b26c2</Sha>
7+
<Sha>148cf3e1d71c4164887e8ef7e77430baa7ad5185</Sha>
88
<SourceBuild RepoName="source-build-externals" ManagedOnly="true" />
99
</Dependency>
1010
<!-- Intermediate is necessary for source build. -->
11-
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="10.0.0-beta.25126.4">
11+
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="10.0.0-beta.25157.1">
1212
<Uri>https://github.com/dotnet/arcade</Uri>
13-
<Sha>6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d</Sha>
13+
<Sha>1ec6078c26e4a60b77d8fe64881491cd28335a08</Sha>
1414
<SourceBuild RepoName="arcade" ManagedOnly="true" />
1515
</Dependency>
16-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25126.4">
16+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25157.1">
1717
<Uri>https://github.com/dotnet/arcade</Uri>
18-
<Sha>6d4b01bce3a29c172faff5abc0bfe2ae3d1fef3d</Sha>
18+
<Sha>1ec6078c26e4a60b77d8fe64881491cd28335a08</Sha>
1919
</Dependency>
20-
<Dependency Name="Microsoft.DotNet.GenAPI.Task" Version="10.0.100-preview.3.25152.3">
20+
<Dependency Name="Microsoft.DotNet.GenAPI.Task" Version="10.0.100-preview.3.25159.6">
2121
<Uri>https://github.com/dotnet/sdk</Uri>
22-
<Sha>5abca83185cb00f7cff5c35a61bc21110a793d5e</Sha>
22+
<Sha>bf19cbbae5fdf176cd4f13bca559133021779846</Sha>
2323
</Dependency>
2424
<Dependency Name="Microsoft.NETCore.ILAsm" Version="5.0.0-preview.4.20202.18">
2525
<Uri>https://github.com/dotnet/runtime</Uri>

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<MicrosoftNETCoreILAsmVersion>6.0.0-preview.6.21352.12</MicrosoftNETCoreILAsmVersion>
1717
<MicrosoftNETCoreILDAsmVersion>6.0.0-preview.6.21352.12</MicrosoftNETCoreILDAsmVersion>
1818
<!-- SDK dependencies -->
19-
<MicrosoftDotNetGenAPITaskPackageVersion>10.0.100-preview.3.25152.3</MicrosoftDotNetGenAPITaskPackageVersion>
19+
<MicrosoftDotNetGenAPITaskPackageVersion>10.0.100-preview.3.25159.6</MicrosoftDotNetGenAPITaskPackageVersion>
2020
<!-- xUnit dependencies -->
2121
<XunitSkippableFactVersion>1.4.13</XunitSkippableFactVersion>
2222
</PropertyGroup>

eng/common/core-templates/job/job.yml

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ parameters:
2323
enablePublishBuildArtifacts: false
2424
enablePublishBuildAssets: false
2525
enablePublishTestResults: false
26-
enablePublishUsingPipelines: false
2726
enableBuildRetry: false
2827
mergeTestResults: false
2928
testRunTitle: ''

eng/common/core-templates/job/publish-build-assets.yml

-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ parameters:
2020
# if 'true', the build won't run any of the internal only steps, even if it is running in non-public projects.
2121
runAsPublic: false
2222

23-
# Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing
24-
publishUsingPipelines: false
25-
2623
# Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing
2724
publishAssetsImmediately: false
2825

@@ -96,7 +93,6 @@ jobs:
9693
arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet
9794
/p:ManifestsPath='$(Build.StagingDirectory)/AssetManifests'
9895
/p:MaestroApiEndpoint=https://maestro.dot.net
99-
/p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }}
10096
/p:OfficialBuildId=$(Build.BuildNumber)
10197
condition: ${{ parameters.condition }}
10298
continueOnError: ${{ parameters.continueOnError }}

eng/common/core-templates/jobs/codeql-build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
enablePublishBuildArtifacts: false
1616
enablePublishTestResults: false
1717
enablePublishBuildAssets: false
18-
enablePublishUsingPipelines: false
1918
enableTelemetry: true
2019

2120
variables:

eng/common/core-templates/jobs/jobs.yml

-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ parameters:
55
# Optional: Include PublishBuildArtifacts task
66
enablePublishBuildArtifacts: false
77

8-
# Optional: Enable publishing using release pipelines
9-
enablePublishUsingPipelines: false
10-
118
# Optional: Enable running the source-build jobs to build repo from source
129
enableSourceBuild: false
1310

@@ -112,7 +109,6 @@ jobs:
112109
- Source_Build_Complete
113110

114111
runAsPublic: ${{ parameters.runAsPublic }}
115-
publishUsingPipelines: ${{ parameters.enablePublishUsingPipelines }}
116112
publishAssetsImmediately: ${{ parameters.publishAssetsImmediately }}
117113
enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }}
118114
artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }}

eng/common/native/install-dependencies.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ case "$os" in
2727
libssl-dev libkrb5-dev pigz cpio
2828

2929
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
30-
elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ]; then
31-
dnf install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio
30+
elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ]; then
31+
pkg_mgr="$(command -v tdnf 2>/dev/null || command -v dnf)"
32+
$pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio
3233
elif [ "$ID" = "alpine" ]; then
3334
apk add build-base cmake bash curl clang llvm-dev lld lldb krb5-dev lttng-ust-dev icu-dev openssl-dev pigz cpio
3435
else

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"dotnet": "10.0.100-preview.3.25125.5"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25126.4",
6+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25157.1",
77
"Microsoft.Build.NoTargets": "3.7.0"
88
}
99
}

0 commit comments

Comments
 (0)