You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .pipelines/OneBranch.Buddy.yml
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,14 @@ parameters: # parameters are shown up in ADO UI in a build queue time
17
17
default: false
18
18
19
19
variables:
20
-
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
21
20
system.debug: ${{ parameters.debug }}
22
21
ENABLE_PRS_DELAYSIGN: 1
23
22
ROOT: $(Build.SourcesDirectory)
24
23
REPOROOT: $(Build.SourcesDirectory)
25
24
OUTPUTROOT: $(REPOROOT)\out
26
25
NUGET_XMLDOC_MODE: skip
27
26
28
-
WindowsContainerImage: 'cdpxwin1809.azurecr.io/global/obinfra/windows/1809/vs2019:latest'# Docker image which is used to build the project https://aka.ms/obpipelines/containers
27
+
WindowsContainerImage: 'onebranch.azurecr.io/windows/ltsc2019/vse2022:latest'# Docker image which is used to build the project https://aka.ms/obpipelines/containers
29
28
30
29
resources:
31
30
repositories:
@@ -52,9 +51,10 @@ extends:
52
51
53
52
variables: # More settings at https://aka.ms/obpipelines/yaml/jobs
54
53
ob_outputDirectory: '$(OUTPUTROOT)'# this directory is uploaded to pipeline artifacts, reddog and cloudvault. More info at https://aka.ms/obpipelines/artifacts
WindowsContainerImage: 'onebranch.azurecr.io/windows/ltsc2019/vse2022:latest'# Docker image which is used to build the project https://aka.ms/obpipelines/containers
31
+
32
+
resources:
33
+
repositories:
34
+
- repository: templates
35
+
type: git
36
+
name: OneBranch.Pipelines/GovernedTemplates
37
+
ref: refs/heads/main
38
+
39
+
extends:
40
+
template: ${{ variables.obpTemplate }}
41
+
parameters:
42
+
globalSdl: # https://aka.ms/obpipelines/sdl
43
+
tsa:
44
+
enabled: false
45
+
cg:
46
+
failOnAlert: false
47
+
48
+
stages:
49
+
- stage: build
50
+
jobs:
51
+
- job: main
52
+
pool:
53
+
type: windows # read more about custom job pool types at https://aka.ms/obpipelines/yaml/jobs
54
+
55
+
variables:
56
+
ob_outputDirectory: '$(OUTPUTROOT)'# this directory is uploaded to pipeline artifacts, reddog and cloudvault. More info at https://aka.ms/obpipelines/artifacts
0 commit comments