From b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 1 Apr 2019 09:10:20 -0700 Subject: [PATCH] Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649) --- .azure-pipelines/posix-steps.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index 2affb50dc10..3ed3abd02a7 100644 --- a/.azure-pipelines/posix-steps.yml +++ b/.azure-pipelines/posix-steps.yml @@ -10,6 +10,10 @@ steps: clean: true fetchDepth: 5 +# Work around a known issue affecting Ubuntu VMs on Pipelines +- script: sudo setfacl -Rb /home/vsts + displayName: 'Workaround ACL issue' + - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependencies }}.sh $(openssl_version) displayName: 'Install dependencies'