Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix building x86 Windows native AOT runtime packs #100512

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 1 addition & 35 deletions eng/pipelines/runtime-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ extends:
buildConfig: release
platforms:
- windows_x64
- windows_x86
- windows_arm64
jobParameters:
templatePath: 'templates-official'
Expand All @@ -89,41 +90,6 @@ extends:
parameters:
name: $(osGroup)$(osSubgroup)_$(archType)


#
# Build CoreCLR runtime packs
# Windows x86
# No NativeAOT as NativeAOT is not supported on x86
# Sign diagnostic files after native build
#
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
jobTemplate: /eng/pipelines/common/global-build-job.yml
buildConfig: release
platforms:
- windows_x86
jobParameters:
templatePath: 'templates-official'
buildArgs: -s clr.runtime+clr.alljits -c $(_BuildConfig) /bl:$(Build.SourcesDirectory)/artifacts/logs/$(_BuildConfig)/CoreClrNativeBuild.binlog
nameSuffix: CoreCLR
isOfficialBuild: ${{ variables.isOfficialBuild }}
timeoutInMinutes: 120
postBuildSteps:
- template: /eng/pipelines/coreclr/templates/sign-diagnostic-files.yml
parameters:
basePath: $(Build.SourcesDirectory)/artifacts/bin/coreclr
isOfficialBuild: ${{ variables.isOfficialBuild }}
timeoutInMinutes: 30
# Now that we've signed the diagnostic files, do the rest of the build.
- template: /eng/pipelines/common/templates/global-build-step.yml
parameters:
buildArgs: -s clr.corelib+clr.nativecorelib+clr.tools+clr.packages+libs+host+packs -c $(_BuildConfig)
displayName: Build managed CoreCLR components, all libraries, hosts, and packs

# Upload the results.
- template: /eng/pipelines/common/upload-intermediate-artifacts-step.yml
parameters:
name: $(osGroup)$(osSubgroup)_$(archType)
#
# Build CoreCLR runtime packs
# Mac x64/arm64
Expand Down
Loading