Skip to content

Commit 4cad2f0

Browse files
ci: add missing image and enable Go module proxy in daily CI build (#1001)
* fix: add missing image property to 1ES pipeline pool config The daily-ci-build pipeline was failing because the pool configuration specified os: linux but was missing the required image property. Added image: ubuntu-latest to match the os setting. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * fix: enable Go internal module proxy feature flag After August 2025, 1ES pipelines require opting in to the internal public module proxy for Go builds via the featureFlags parameter. See aka.ms/goproxy for details. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 110918a commit 4cad2f0

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.azure-pipelines/daily-ci-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ extends:
2121
parameters:
2222
pool:
2323
name: Azure-Pipelines-1ESPT-ExDShared
24+
image: ubuntu-latest
2425
os: linux
26+
featureFlags:
27+
golang:
28+
internalModuleProxy:
29+
enabled: true
2530
sdl:
2631
sourceAnalysisPool:
2732
name: Azure-Pipelines-1ESPT-ExDShared

0 commit comments

Comments
 (0)