From 76dd0b2b30a2d84a94bc2785dea22545ad5c2b45 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Thu, 14 May 2026 13:28:19 -0700 Subject: [PATCH 1/4] chore: add DevOps build pipeline for S360 security vulnerability scanning Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .azurepipelines/build.yml | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .azurepipelines/build.yml diff --git a/.azurepipelines/build.yml b/.azurepipelines/build.yml new file mode 100644 index 00000000000..f642694d54f --- /dev/null +++ b/.azurepipelines/build.yml @@ -0,0 +1,49 @@ +trigger: none +pr: none + +schedules: + - cron: '0 0 * * 1,3' + displayName: Monday and Wednesday builds + branches: + include: + - main + always: true + +resources: + repositories: + - repository: 1ESPipelineTemplates + type: git + name: 1ESPipelineTemplates/1ESPipelineTemplates + ref: refs/tags/release + +extends: + template: v1/1ES.Unofficial.PipelineTemplate.yml@1ESPipelineTemplates + parameters: + pool: + name: Azure-Pipelines-1ESPT-ExDShared + os: linux + stages: + - stage: Build + jobs: + - job: Build + displayName: Build Go Beta SDK + steps: + - checkout: self + submodules: recursive + + - task: GoTool@0 + displayName: Set up Go + inputs: + version: '1.23' + + - script: go install + displayName: Install dependencies + workingDirectory: $(Build.SourcesDirectory) + + - script: go build ./... + displayName: Build SDK + workingDirectory: $(Build.SourcesDirectory) + + - script: go test ./... + displayName: Run unit tests + workingDirectory: $(Build.SourcesDirectory)/tests From 598c2ad37d866aa894c248ca6a94f3535965d592 Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Thu, 14 May 2026 14:47:41 -0700 Subject: [PATCH 2/4] chore: update build pipeline schedule to daily Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .azurepipelines/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azurepipelines/build.yml b/.azurepipelines/build.yml index f642694d54f..0322c207ab9 100644 --- a/.azurepipelines/build.yml +++ b/.azurepipelines/build.yml @@ -2,8 +2,8 @@ trigger: none pr: none schedules: - - cron: '0 0 * * 1,3' - displayName: Monday and Wednesday builds + - cron: '0 0 * * *' + displayName: Daily builds branches: include: - main From 0e898f37a7c6fa9a73b2ccf0dca1822bd6305caf Mon Sep 17 00:00:00 2001 From: ramsessanchez <63934382+ramsessanchez@users.noreply.github.com> Date: Thu, 14 May 2026 15:22:37 -0700 Subject: [PATCH 3/4] chore: enable SDL security scanning in build pipeline Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .azurepipelines/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.azurepipelines/build.yml b/.azurepipelines/build.yml index 0322c207ab9..1e3ac27bb73 100644 --- a/.azurepipelines/build.yml +++ b/.azurepipelines/build.yml @@ -22,6 +22,17 @@ extends: pool: name: Azure-Pipelines-1ESPT-ExDShared os: linux + sdl: + sourceAnalysisPool: + name: Azure-Pipelines-1ESPT-ExDShared + image: windows-2022 + os: windows + credscan: + enabled: true + policheck: + enabled: true + binskim: + enabled: true stages: - stage: Build jobs: From 24cc6cc0e4c7f1ab46c20c2843f8aeb0ce02b124 Mon Sep 17 00:00:00 2001 From: Ramses Sanchez-Hernandez <63934382+ramsessanchez@users.noreply.github.com> Date: Fri, 15 May 2026 12:19:23 -0700 Subject: [PATCH 4/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .azurepipelines/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azurepipelines/build.yml b/.azurepipelines/build.yml index 1e3ac27bb73..13452299582 100644 --- a/.azurepipelines/build.yml +++ b/.azurepipelines/build.yml @@ -45,7 +45,7 @@ extends: - task: GoTool@0 displayName: Set up Go inputs: - version: '1.23' + version: '1.25.0' - script: go install displayName: Install dependencies