Skip to content

Commit a7b4ba8

Browse files
Merging main into darc-main-420b4eff-f16f-4797-8ab3-d6db19bf7727
2 parents 21c1ef6 + 1a7ca4a commit a7b4ba8

File tree

19 files changed

+360
-440
lines changed

19 files changed

+360
-440
lines changed

.azure/pipelines/ci-public.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,8 +632,7 @@ stages:
632632
platform:
633633
name: 'Managed'
634634
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-build-amd64'
635-
buildScript: './eng/build.sh --publish --no-build-repo-tasks $(_PublishArgs) $(_InternalRuntimeDownloadArgs)'
636-
skipPublishValidation: true
635+
buildScript: './eng/build.sh $(_InternalRuntimeDownloadArgs)'
637636
jobProperties:
638637
timeoutInMinutes: 120
639638
variables:

.azure/pipelines/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -677,8 +677,7 @@ extends:
677677
platform:
678678
name: 'Managed'
679679
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8'
680-
buildScript: './eng/build.sh --publish --no-build-repo-tasks $(_PublishArgs) $(_InternalRuntimeDownloadArgs)'
681-
skipPublishValidation: true
680+
buildScript: './eng/build.sh $(_InternalRuntimeDownloadArgs)'
682681
jobProperties:
683682
timeoutInMinutes: 120
684683
variables:

.github/policies/resourceManagement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ configuration:
555555
then:
556556
- removeMilestone
557557
- addMilestone:
558-
milestone: 9.0.5
558+
milestone: 9.0.6
559559
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0 branch'
560560
- if:
561561
- payloadType: Pull_Request
@@ -566,7 +566,7 @@ configuration:
566566
then:
567567
- removeMilestone
568568
- addMilestone:
569-
milestone: 8.0.16
569+
milestone: 8.0.17
570570
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/8.0 branch'
571571
- if:
572572
- payloadType: Issues

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
backport:
17-
uses: dotnet/arcade/.github/workflows/backport-base.yml@11c848003df85813f4821fec2d43290fd4ca8594 # 2025-01-13
17+
uses: dotnet/arcade/.github/workflows/backport-base.yml@43abe63bfc701d34e6599490a557a74710693410 # 2025-01-13
1818
with:
1919
pr_description_template: |
2020
Backport of #%source_pr_number% to %target_branch%

.github/workflows/inter-branch-merge-flow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ permissions:
1010

1111
jobs:
1212
Merge:
13-
uses: dotnet/arcade/.github/workflows/backport-base.yml@11c848003df85813f4821fec2d43290fd4ca8594 # 2024-06-24
13+
uses: dotnet/arcade/.github/workflows/backport-base.yml@43abe63bfc701d34e6599490a557a74710693410 # 2024-06-24

eng/Version.Details.xml

Lines changed: 181 additions & 181 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 87 additions & 87 deletions
Large diffs are not rendered by default.

eng/common/core-templates/steps/source-build.yml

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,6 @@ steps:
1919
set -x
2020
df -h
2121
22-
# If file changes are detected, set CopyWipIntoInnerSourceBuildRepo to copy the WIP changes into the inner source build repo.
23-
internalRestoreArgs=
24-
if ! git diff --quiet; then
25-
internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true'
26-
# The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo.
27-
# This only works if there is a username/email configured, which won't be the case in most CI runs.
28-
git config --get user.email
29-
if [ $? -ne 0 ]; then
30-
git config user.email [email protected]
31-
git config user.name dn-bot
32-
fi
33-
fi
34-
3522
# If building on the internal project, the internal storage variable may be available (usually only if needed)
3623
# In that case, add variables to allow the download of internal runtimes if the specified versions are not found
3724
# in the default public locations.
@@ -71,7 +58,6 @@ steps:
7158
--restore --build --pack -bl \
7259
${{ parameters.platform.buildArguments }} \
7360
$internalRuntimeDownloadArgs \
74-
$internalRestoreArgs \
7561
$targetRidArgs \
7662
$runtimeOsArgs \
7763
$baseOsArgs \
@@ -80,26 +66,12 @@ steps:
8066
/p:DotNetBuildRepo=true \
8167
displayName: Build
8268

83-
# Upload build logs for diagnosis.
84-
- task: CopyFiles@2
85-
displayName: Prepare BuildLogs staging directory
86-
inputs:
87-
SourceFolder: '$(Build.SourcesDirectory)'
88-
Contents: |
89-
**/*.log
90-
**/*.binlog
91-
artifacts/sb/prebuilt-report/**
92-
TargetFolder: '$(Build.StagingDirectory)/BuildLogs'
93-
CleanTargetFolder: true
94-
continueOnError: true
95-
condition: succeededOrFailed()
96-
9769
- template: /eng/common/core-templates/steps/publish-pipeline-artifacts.yml
9870
parameters:
9971
is1ESPipeline: ${{ parameters.is1ESPipeline }}
10072
args:
10173
displayName: Publish BuildLogs
102-
targetPath: '$(Build.StagingDirectory)/BuildLogs'
74+
targetPath: artifacts/log/${{ coalesce(variables._BuildConfig, 'Release') }}
10375
artifactName: BuildLogs_SourceBuild_${{ parameters.platform.name }}_Attempt$(System.JobAttempt)
10476
continueOnError: true
10577
condition: succeededOrFailed()

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"jdk": "latest"
2828
},
2929
"msbuild-sdks": {
30-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25252.107",
31-
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25252.107",
32-
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25252.107",
30+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25257.101",
31+
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25257.101",
32+
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25257.101",
3333
"Microsoft.Build.NoTargets": "3.7.0",
3434
"Microsoft.Build.Traversal": "3.4.0"
3535
}

src/Components/Web.JS/src/Services/WebRootComponentManager.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,10 +470,6 @@ function isDescriptorInDocument(descriptor: ComponentDescriptor): boolean {
470470
}
471471

472472
function areWebAssemblyResourcesLikelyCached(config: MonoConfig): boolean {
473-
if (!config.cacheBootResources) {
474-
return false;
475-
}
476-
477473
const hash = getWebAssemblyResourceHash(config);
478474
if (!hash) {
479475
return false;

0 commit comments

Comments
 (0)