Skip to content

Commit

Permalink
[automated] Merge branch 'release/8.0.3xx' => 'release/8.0.4xx' (#20036)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-wuzhai authored Aug 7, 2024
2 parents 639c033 + 76f0ce8 commit 869197e
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ extends:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8
debian11Amd64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-amd64
fedora39:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-39
fedora40:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-40
ubuntu2204:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04
mariner20CrossArm:
Expand Down Expand Up @@ -116,8 +116,8 @@ extends:
- template: eng/build.yml@self
parameters:
agentOs: Linux
jobName: Build_Fedora_39_Debug_x64
container: fedora39
jobName: Build_Fedora_40_Debug_x64
container: fedora40
buildConfiguration: Debug
buildArchitecture: x64
linuxPortable: true
Expand Down
11 changes: 9 additions & 2 deletions eng/pipelines/templates/jobs/vmr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,14 +251,21 @@ jobs:
continueOnError: true
condition: succeededOrFailed()
- task: CopyFiles@2
inputs:
SourceFolder: ${{ variables.sourcesPath }}/artifacts/${{ parameters.architecture }}/Release/
TargetFolder: $(Build.ArtifactStagingDirectory)/publishing
displayName: Copy artifacts to Artifact Staging Directory
condition: succeededOrFailed()

- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- publish: '$(Build.StagingDirectory)/BuildLogs'
artifact: $(Agent.JobName)_BuildLogs_Attempt$(System.JobAttempt)
displayName: Publish BuildLogs
continueOnError: true
condition: succeededOrFailed()

- publish: '${{ variables.sourcesPath }}/artifacts/${{ parameters.architecture }}/Release/'
- publish: $(Build.ArtifactStagingDirectory)/publishing
artifact: $(Agent.JobName)_Artifacts
displayName: Publish Artifacts
condition: succeededOrFailed()
Expand All @@ -276,7 +283,7 @@ jobs:
publishRunAttachments: true
testRunTitle: SourceBuild_SmokeTests_$(Agent.JobName)

- publish: '${{ variables.sourcesPath }}/artifacts/${{ parameters.architecture }}/Release/'
- publish: $(Build.ArtifactStagingDirectory)/publishing
artifact: $(Agent.JobName)_Artifacts
displayName: Publish Artifacts
condition: succeededOrFailed()
Expand Down
12 changes: 9 additions & 3 deletions eng/pipelines/templates/variables/vmr-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
variables:
- name: almaLinuxContainer
value: mcr.microsoft.com/dotnet-buildtools/prereqs:almalinux-8-source-build
- name: alpineContainer
value: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.19-WithNode
value: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.20-withnode
- name: centOSStreamContainer
value: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9
- name: fedoraContainer
Expand All @@ -10,17 +12,21 @@ variables:
- name: ubuntuArmContainer
value: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-arm64

- name: almaLinuxName
value: AlmaLinux8
- name: alpineName
value: Alpine319
value: Alpine320
- name: centOSStreamName
value: CentOSStream9
- name: fedoraName
value: Fedora40
- name: ubuntuName
value: Ubuntu2204

- name: almaLinuxX64Rid
value: almalinux.8-x64
- name: alpineX64Rid
value: alpine.3.19-x64
value: alpine.3.20-x64
- name: centOSStreamX64Rid
value: centos.9-x64
- name: fedoraX64Rid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ jobs:
dotnetDotnetRunId: ${{ parameters.dotnetDotnetRunId }}
publishTestResultsPr: true

- template: templates/jobs/sdk-diff-tests.yml
parameters:
buildName: ${{ format('{0}_Offline_MsftSdk', variables.almaLinuxName) }}
targetRid: ${{ variables.almaLinuxX64Rid }}
architecture: x64
dotnetDotnetRunId: ${{ parameters.dotnetDotnetRunId }}

- template: templates/jobs/sdk-diff-tests.yml
parameters:
buildName: ${{ format('{0}_Offline_MsftSdk', variables.alpineName) }}
Expand Down

0 comments on commit 869197e

Please sign in to comment.