ci: Cleanup build dirs on Azure Devops (#16047)
* ci: Cleanup directories after build * Use rm to cleanup source directory * Update vsts.yml * Check if files actually deleted * Get rid of hidden files too
This commit is contained in:
parent
649633bbb7
commit
0e6db8fd56
1 changed files with 5 additions and 0 deletions
5
vsts.yml
5
vsts.yml
|
@ -233,6 +233,11 @@ jobs:
|
|||
condition: and(failed(), eq(variables['NOTIFY_SLACK'], '1'))
|
||||
timeoutInMinutes: 1
|
||||
|
||||
- bash: |
|
||||
rm -rf ..?* .[!.]* *
|
||||
condition: always()
|
||||
displayName: 'Cleanup directories'
|
||||
|
||||
- job: run_tests
|
||||
displayName: Run Tests
|
||||
dependsOn: build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue