Skip to content

Commit 12f4b02

Browse files
Fix JIT rolling build for new build-runtime script arguments (#50876)
Adjust for #49906
1 parent bedcecd commit 12f4b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/pipelines/coreclr/templates/build-jit-job.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ jobs:
100100

101101
# Build CoreCLR JIT
102102
- ${{ if ne(parameters.osGroup, 'windows') }}:
103-
- script: $(Build.SourcesDirectory)/src/coreclr/build-runtime$(scriptExt) $(buildConfig) $(archType) $(crossArg) -ci $(compilerArg) -skipruntime -nopgooptimize
103+
- script: $(Build.SourcesDirectory)/src/coreclr/build-runtime$(scriptExt) $(buildConfig) $(archType) $(crossArg) -ci $(compilerArg) -nopgooptimize -component alljits
104104
displayName: Build CoreCLR JIT
105105
- ${{ if eq(parameters.osGroup, 'windows') }}:
106-
- script: set __TestIntermediateDir=int&&$(Build.SourcesDirectory)/src/coreclr/build-runtime$(scriptExt) $(buildConfig) $(archType) -ci -skipruntime -nopgooptimize -skiprestoreoptdata
106+
- script: set __TestIntermediateDir=int&&$(Build.SourcesDirectory)/src/coreclr/build-runtime$(scriptExt) $(buildConfig) $(archType) -ci -nopgooptimize -skiprestoreoptdata -component alljits
107107
displayName: Build CoreCLR JIT
108108

109109
# Ensure the Python azure-storage-blob package is installed before doing the upload.

0 commit comments

Comments
 (0)