From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 1 Apr 2019 16:30:58 +0000 (-0700) Subject: Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649) X-Git-Tag: v3.7.4rc1~269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85730b84fbe6675c5f61cb23514e06362f8053ec;p=thirdparty%2FPython%2Fcpython.git Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649) (cherry picked from commit b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece) Co-authored-by: Steve Dower --- diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index a4160e5a1bf5..15e3f0b9ad1b 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'