From eb0bc6cd5295dd9370031152a7e60024c2aeed6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Fri, 30 Jan 2026 11:28:59 +0100 Subject: [PATCH] Move OneLocBuild back to run on every main commit --- eng/pipelines/runtime-official.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/eng/pipelines/runtime-official.yml b/eng/pipelines/runtime-official.yml index 3da54d5af81674..a5af228a5bab4c 100644 --- a/eng/pipelines/runtime-official.yml +++ b/eng/pipelines/runtime-official.yml @@ -19,7 +19,7 @@ trigger: schedules: - cron: "0 9 * * *" - displayName: Daily OneLocBuild and SourceIndex + displayName: Daily SourceIndex branches: include: - main @@ -41,7 +41,7 @@ extends: parameters: isOfficialBuild: true stages: - - ${{ if and(eq(variables['Build.SourceBranch'], 'refs/heads/main'), or(eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual'))) }}: + - ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}: - stage: Localization dependsOn: [] jobs: @@ -54,16 +54,18 @@ extends: MirrorBranch: main LclSource: lclFilesfromPackage LclPackageId: 'LCL-JUNO-PROD-RUNTIME' - - stage: Source_Index - dependsOn: [] - displayName: Source Index - jobs: - # - # Source Index Build - # - - template: /eng/common/templates-official/job/source-index-stage1.yml - parameters: - sourceIndexBuildCommand: build.cmd -subset libs.sfx+libs.oob -binarylog -os linux -ci /p:SkipLibrariesNativeRuntimePackages=true + + - ${{ if or(eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')) }}: + - stage: Source_Index + dependsOn: [] + displayName: Source Index + jobs: + # + # Source Index Build + # + - template: /eng/common/templates-official/job/source-index-stage1.yml + parameters: + sourceIndexBuildCommand: build.cmd -subset libs.sfx+libs.oob -binarylog -os linux -ci /p:SkipLibrariesNativeRuntimePackages=true - stage: Publish dependsOn: []