Clean workspace before running job

This commit is contained in:
Chris Cheetham 2020-08-20 17:12:16 -04:00
Родитель 7c6bcee943
Коммит 574e4b64ed
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,8 @@ jobs:
timeoutInMinutes: 90
pool:
vmImage: ubuntu-latest
workspace:
clean: all
steps:
- template: setup-cloud-foundry-linux-steps.yaml
- bash: touch reinit
@ -26,6 +28,8 @@ jobs:
# timeoutInMinutes: 90
# pool:
# vmImage: macOS-latest
# workspace:
# clean: all
# steps:
# - template: setup-cloud-foundry-osx-steps.yaml
# - bash: touch reinit
@ -44,6 +48,8 @@ jobs:
timeoutInMinutes: 90
pool:
vmImage: windows-latest
workspace:
clean: all
steps:
- template: setup-cloud-foundry-windows-steps.yaml
- bash: touch reinit

Просмотреть файл

@ -7,6 +7,8 @@ jobs:
displayName: '${{parameters.feature}}: ${{parameters.sample}} (Linux)'
pool:
vmImage: Ubuntu-16.04
workspace:
clean: all
steps:
- template: setup-cloud-foundry-linux-steps.yaml
- template: setup-cloud-foundry-uaac-steps.yaml
@ -23,6 +25,8 @@ jobs:
# displayName: '${{parameters.feature}}: ${{parameters.sample}} (OSX)'
# pool:
# vmImage: MacOS-10.14
# workspace:
# clean: all
# steps:
# - template: setup-cloud-foundry-osx-steps.yaml
# - template: setup-cloud-foundry-uaac-steps.yaml
@ -39,6 +43,8 @@ jobs:
displayName: '${{parameters.feature}}: ${{parameters.sample}} (Windows)'
pool:
vmImage: Windows-2019
workspace:
clean: all
steps:
- template: setup-cloud-foundry-windows-steps.yaml
- template: setup-cloud-foundry-uaac-steps.yaml