@@ -100,6 +100,16 @@ stages:
100
100
_buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm64 '
101
101
_buildExtraArguments : -warnAsError false
102
102
_publishTests : true
103
+
104
+ ${{ if eq(parameters.isOfficialBuild, 'true') }} :
105
+ RedHat6_x64_Release :
106
+ _BuildConfig : Release
107
+ _architecture : x64
108
+ _framework : netcoreapp
109
+ _buildScriptPrefix : ' '
110
+ _buildExtraArguments : /p:RuntimeOS=rhel.6 /p:PortableBuild=false
111
+ _dockerContainer : rhel6_container
112
+ _publishTests : false
103
113
104
114
pool :
105
115
name : Hosted Ubuntu 1604
@@ -127,34 +137,43 @@ stages:
127
137
128
138
# Legs without helix testing
129
139
# Only run this leg in PRs.
130
- - ${{ if and(eq(parameters.fullMatrix , 'false'), and(ne(parameters.testScope, 'outerloop'), ne(parameters.testScope, 'all'))) }} :
140
+ - ${{ if and(eq(parameters.isOfficialBuild , 'false'), and(ne(parameters.testScope, 'outerloop'), ne(parameters.testScope, 'all'))) }} :
131
141
- job : LinuxNoTest
132
142
displayName : Build
133
143
strategy :
134
144
matrix :
135
- arm_Debug :
136
- _BuildConfig : Debug
137
- _architecture : arm
138
- _framework : netcoreapp
139
- _buildExtraArguments : /p:RuntimeOS=ubuntu.16.04 -warnAsError false
140
- _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm '
141
- _dockerContainer : ubuntu_1604_arm_cross_container
142
-
143
- musl_arm64_Debug :
144
- _BuildConfig : Debug
145
- _architecture : arm64
146
- _framework : netcoreapp
147
- _dockerContainer : alpine_37_arm64_container
148
- _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm64 '
149
- _buildExtraArguments : -warnAsError false /p:BuildNativeCompiler=--clang5.0 /p:RuntimeOS=linux-musl
150
-
151
- arm64_Debug :
152
- _BuildConfig : Debug
153
- _architecture : arm64
145
+ RedHat6_x64_Release :
146
+ _BuildConfig : Release
147
+ _architecture : x64
154
148
_framework : netcoreapp
155
- _dockerContainer : ubuntu_1604_arm64_cross_container
156
- _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm64 '
157
- _buildExtraArguments : --warnAsError false
149
+ _buildScriptPrefix : ' '
150
+ _buildExtraArguments : /p:RuntimeOS=rhel.6 /p:PortableBuild=false
151
+ _dockerContainer : rhel6_container
152
+
153
+ ${{ if eq(parameters.isFullMatrix, 'false') }} :
154
+ arm_Debug :
155
+ _BuildConfig : Debug
156
+ _architecture : arm
157
+ _framework : netcoreapp
158
+ _buildExtraArguments : /p:RuntimeOS=ubuntu.16.04 -warnAsError false
159
+ _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm '
160
+ _dockerContainer : ubuntu_1604_arm_cross_container
161
+
162
+ musl_arm64_Debug :
163
+ _BuildConfig : Debug
164
+ _architecture : arm64
165
+ _framework : netcoreapp
166
+ _dockerContainer : alpine_37_arm64_container
167
+ _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm64 '
168
+ _buildExtraArguments : -warnAsError false /p:BuildNativeCompiler=--clang5.0 /p:RuntimeOS=linux-musl
169
+
170
+ arm64_Debug :
171
+ _BuildConfig : Debug
172
+ _architecture : arm64
173
+ _framework : netcoreapp
174
+ _dockerContainer : ubuntu_1604_arm64_cross_container
175
+ _buildScriptPrefix : ' ROOTFS_DIR=/crossrootfs/arm64 '
176
+ _buildExtraArguments : --warnAsError false
158
177
159
178
pool :
160
179
name : Hosted Ubuntu 1604
0 commit comments