added continue on error for the linux cleanup step, to mitigate the build failure. root cause unknown (#1936)

This commit is contained in:
shahasad 2019-09-26 15:57:24 -07:00 committed by GitHub
parent 2ecac41614
commit c3ffd1f47d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,3 +7,4 @@ steps:
- script: rm -rf $(Agent.BuildDirectory)
displayName: Clean build files (POSIX)
condition: not(eq(variables['Agent.OS'], 'Windows_NT')) # and always()
continueOnError: true # continuing on error for this step, since linux build folder is somehow getting permission issue