Skip to content

Commit 73e8207

Browse files
committed
Merged PR 37086: Add parameter to disable net isolation for the release pipeline too
Add parameter to disable net isolation for the release pipeline too, to allow the pipeline to download tools for building the msixbundle package.
1 parent 5f3c328 commit 73e8207

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.pipelines/Release-Official.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ parameters: # parameters are shown up in ADO UI in a build queue time
99
displayName: 'Publish artifacts'
1010
type: boolean
1111
default: true
12+
- name: disableNetworkIsolation
13+
type: boolean
14+
default: false
1215

1316
variables:
1417
- name: CDP_DEFINITION_BUILD_COUNT
@@ -21,6 +24,8 @@ variables:
2124
value: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:latest'
2225
- name: LinuxContainerImage
2326
value: mcr.microsoft.com/onebranch/azurelinux/build:3.0
27+
- name: disableNetworkIsolation
28+
value: ${{ parameters.disableNetworkIsolation }}
2429

2530
resources:
2631
repositories:
@@ -50,6 +55,7 @@ extends:
5055
WindowsHostVersion:
5156
Version: 2022
5257
Network: KS3
58+
disableNetworkIsolation: ${{ variables.disableNetworkIsolation }}
5359
globalSdl:
5460
asyncSdl:
5561
enabled: true

0 commit comments

Comments
 (0)