summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-04-01 09:30:58 -0700
committerGitHub <noreply@github.com>2019-04-01 09:30:58 -0700
commit85730b84fbe6675c5f61cb23514e06362f8053ec (patch)
treed5b7a1a616cbf5a5ff78341ba9b69991edd84e41 /.azure-pipelines
parent35fc38e5e82d18ceec95af9af2103319497e2eaf (diff)
downloadcpython-git-85730b84fbe6675c5f61cb23514e06362f8053ec.tar.gz
Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)
(cherry picked from commit b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece) Co-authored-by: Steve Dower <steve.dower@microsoft.com>
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/posix-steps.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml
index a4160e5a1b..15e3f0b9ad 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'