Commit 1d8eddc 1 parent 3b16756 commit 1d8eddc Copy full SHA for 1d8eddc
File tree 3 files changed +30
-0
lines changed
src/SourceBuild/content/eng/pipelines
3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,23 @@ stages:
91
91
92
92
# CI - Stage 1 x64 legs ------------------------------------
93
93
94
+ # This AlmaLinux leg is intended to build with the min supported glibc version
95
+ - template : ../jobs/vmr-build.yml
96
+ parameters :
97
+ # Changing the build name requires updating the referenced name in the source-build-sdk-diff-tests.yml pipeline
98
+ buildName : ${{ format('{0}_Offline_MsftSdk', variables.almaLinuxName) }}
99
+ isBuiltFromVmr : ${{ parameters.isBuiltFromVmr }}
100
+ vmrBranch : ${{ variables.VmrBranch }}
101
+ architecture : x64
102
+ pool : ${{ parameters.pool_Linux }}
103
+ container : ${{ variables.almaLinuxContainer }}
104
+ buildFromArchive : false # 🚫
105
+ enablePoison : false # 🚫
106
+ excludeOmniSharpTests : true # ✅
107
+ runOnline : false # 🚫
108
+ useMonoRuntime : false # 🚫
109
+ withPreviousSDK : false # 🚫
110
+
94
111
- template : ../jobs/vmr-build.yml@self
95
112
parameters :
96
113
# Changing the build name requires updating the referenced name in the source-build-sdk-diff-tests.yml pipeline
Original file line number Diff line number Diff line change 1
1
variables :
2
+ - name : almaLinuxContainer
3
+ value : mcr.microsoft.com/dotnet-buildtools/prereqs:almalinux-8-source-build
2
4
- name : alpineContainer
3
5
value : mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.19-WithNode
4
6
- name : centOSStreamContainer
@@ -10,6 +12,8 @@ variables:
10
12
- name : ubuntuArmContainer
11
13
value : mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-arm64
12
14
15
+ - name : almaLinuxName
16
+ value : AlmaLinux8
13
17
- name : alpineName
14
18
value : Alpine319
15
19
- name : centOSStreamName
@@ -19,6 +23,8 @@ variables:
19
23
- name : ubuntuName
20
24
value : Ubuntu2204
21
25
26
+ - name : almaLinuxX64Rid
27
+ value : almalinux.8-x64
22
28
- name : alpineX64Rid
23
29
value : alpine.3.19-x64
24
30
- name : centOSStreamX64Rid
Original file line number Diff line number Diff line change 45
45
dotnetDotnetRunId : ${{ parameters.dotnetDotnetRunId }}
46
46
publishTestResultsPr : true
47
47
48
+ - template : templates/jobs/sdk-diff-tests.yml
49
+ parameters :
50
+ buildName : ${{ format('{0}_Offline_MsftSdk', variables.almaLinuxName) }}
51
+ targetRid : ${{ variables.almaLinuxX64Rid }}
52
+ architecture : x64
53
+ dotnetDotnetRunId : ${{ parameters.dotnetDotnetRunId }}
54
+
48
55
- template : templates/jobs/sdk-diff-tests.yml
49
56
parameters :
50
57
buildName : ${{ format('{0}_Offline_MsftSdk', variables.alpineName) }}
You can’t perform that action at this time.
0 commit comments