File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -202,30 +202,30 @@ stages:
202202 strategy :
203203 matrix :
204204 xenial :
205- containerImage : ' xenial'
206- installGit : ' sudo apt update && sudo apt-get install -y git'
205+ containerImage : xenial
206+ configureContainerCommand : ' sudo apt update && sudo apt-get install -y git'
207207 Ubuntu_Bionic_2_1 :
208- containerImage : ' bionic-2.1'
208+ containerImage : bionic-2.1
209209 Ubuntu_Bionic :
210- containerImage : ' bionic'
210+ containerImage : bionic
211211 Ubuntu_Focal :
212- containerImage : ' focal'
212+ containerImage : focal
213213 Ubuntu_Disco_3_0 :
214- containerImage : ' disco-3.0'
214+ containerImage : disco-3.0
215215 Arch_Linux :
216- containerImage : ' disco-3.0 '
217- installGit : ' sudo pacman -Sy --noconfirm git dotnet-sdk openssl-1.0'
216+ containerImage : archlinux
217+ configureContainerCommand : ' sudo pacman -Sy --noconfirm git dotnet-sdk openssl-1.0'
218218 pool :
219219 vmImage : ubuntu-20.04
220220 container : $[ variables['containerImage'] ]
221221 steps :
222- - bash : $(installGit )
223- displayName : Install git
224- condition : ne(variables['installGit '], '')
222+ - bash : $(configureContainerCommand )
223+ displayName : Configure container
224+ condition : ne(variables['configureContainerCommand '], '')
225225 - template : azure-pipelines/xplattest-pipeline.yml
226226
227227 - job : macOS
228228 pool :
229229 vmImage : macOS-10.15
230230 steps :
231- - template : azure-pipelines/xplattest-pipeline.yml
231+ - template : azure-pipelines/xplattest-pipeline.yml
You can’t perform that action at this time.
0 commit comments