From 366f052e34701ba264b04a1db0b8ce77e17c35d5 Mon Sep 17 00:00:00 2001 From: Samuel Wanjohi Date: Mon, 22 Jun 2026 11:31:24 +0300 Subject: [PATCH 1/2] update feeds --- .pipelines/azure-pipelines-rolling.yml | 33 +++++++++++++++++--------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/.pipelines/azure-pipelines-rolling.yml b/.pipelines/azure-pipelines-rolling.yml index d0582d0..2a2602b 100644 --- a/.pipelines/azure-pipelines-rolling.yml +++ b/.pipelines/azure-pipelines-rolling.yml @@ -29,7 +29,11 @@ resources: variables: # Static site produces no compiled binaries. - runCodesignValidationInjection: false +- name: runCodesignValidationInjection + value: false +- group: OData-ESRP-CodeSigning +- name: AZURE_ARTIFACTS_FEED + value: $(ODataFeed) extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates @@ -64,15 +68,22 @@ extends: - checkout: self lfs: true submodules: recursive + + - task: NuGetAuthenticate@1 + displayName: 'Authenticate to the feed' + # Build the site with Jekyll using the Ruby toolchain on the agent. - - script: | - set -euo pipefail - ruby --version - export GEM_HOME="$BUILD_SOURCESDIRECTORY/.gem" - export PATH="$GEM_HOME/bin:$PATH" - gem install bundler --no-document - bundle --version - bundle config set --local path 'vendor/bundle' - bundle install --jobs 4 --retry 3 - bundle exec jekyll build --config _config.yml --future + - task: Bash@3 displayName: 'Build the site' + inputs: + targetType: inline + script: | + set -euo pipefail + ruby --version + export GEM_HOME="$BUILD_SOURCESDIRECTORY/.gem" + export PATH="$GEM_HOME/bin:$PATH" + gem install bundler --no-document + bundle --version + bundle config set --local path 'vendor/bundle' + bundle install --jobs 4 --retry 3 + bundle exec jekyll build --config _config.yml --future From a74d3d5245e561ab8f0ade92e8a5b8d02162bf6a Mon Sep 17 00:00:00 2001 From: Samuel Wanjohi Date: Mon, 22 Jun 2026 15:24:38 +0300 Subject: [PATCH 2/2] use OData-Shared --- .pipelines/azure-pipelines-rolling.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/azure-pipelines-rolling.yml b/.pipelines/azure-pipelines-rolling.yml index 2a2602b..193324b 100644 --- a/.pipelines/azure-pipelines-rolling.yml +++ b/.pipelines/azure-pipelines-rolling.yml @@ -31,7 +31,7 @@ variables: # Static site produces no compiled binaries. - name: runCodesignValidationInjection value: false -- group: OData-ESRP-CodeSigning +- group: OData-Shared - name: AZURE_ARTIFACTS_FEED value: $(ODataFeed)