-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
onebranch: allow publish/package to run in :latest container (#17514)
We have to run in an older OneBranch Windows container image due to compiler bugs. This change prevents us from having to wait for the container image to download for build legs that _aren't_ using the compiler. (cherry picked from commit bc20225) Service-Card-Id: PVTI_lADOAF3p4s4AmhmszgSI7Rw Service-Version: 1.21
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
parameters: | ||
- name: containerVersion | ||
type: string | ||
default: latest | ||
|
||
variables: | ||
WindowsContainerImage: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:1.0.02566.28' | ||
WindowsContainerImage: 'onebranch.azurecr.io/windows/ltsc2022/vse2022:${{ parameters.containerVersion }}' |