|
45 | 45 | # Compute job name from template parameters
|
46 | 46 | ${{ if and(ne(parameters.testGroup, 'clrTools'), eq(parameters.compilerName, 'gcc')) }}:
|
47 | 47 | name: ${{ format('coreclr_{0}_product_build_{1}{1}_{3}_{4}', parameters.compilerName, parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }}
|
48 |
| - displayName: ${{ format('CoreCLR GCC Product Build {0}{1} {2} {3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} |
| 48 | + displayName: ${{ format('GCC Product Build {0}{1} {2} {3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }} |
49 | 49 | ${{ if and(ne(parameters.testGroup, 'clrTools'), ne(parameters.compilerName, 'gcc')) }}:
|
50 | 50 | name: ${{ format('coreclr_{0}_product_build_{1}{2}_{3}_{4}{5}',
|
51 | 51 | parameters.runtimeVariant,
|
@@ -228,6 +228,11 @@ jobs:
|
228 | 228 | - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) skipmanaged skipgeneratelayout $(buildConfig) $(archType) $(crossArg) $(osArg) $(priorityArg) $(compilerArg)
|
229 | 229 | displayName: Build native test components
|
230 | 230 |
|
| 231 | + # Build libs.native, host.native and mono with gcc |
| 232 | + - ${{ if eq(parameters.compilerName, 'gcc') }}: |
| 233 | + - script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) libs.native+host.native+mono $(compilerArg) $(crossArg) -arch $(archType) $(osArg) -c $(buildConfig) $(pgoInstrumentArg) $(officialBuildIdArg) -ci |
| 234 | + displayName: Build clr+mono+libs.native+host.native |
| 235 | + |
231 | 236 | # Sign and add entitlements to these MacOS binaries
|
232 | 237 | - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
|
233 | 238 | - ${{ if eq(parameters.osGroup, 'OSX') }}:
|
|
0 commit comments