summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2019-04-01 09:10:20 -0700
committerGitHub <noreply@github.com>2019-04-01 09:10:20 -0700
commitb4bcefe5fe689ef5caf9c775f72c6d150f3e8ece (patch)
treea16fc2f79c639124e93c1291aac13257f8acdc45 /.azure-pipelines
parent8c61739defd88c7f79e86537886c33745843ce01 (diff)
downloadcpython-git-b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece.tar.gz
Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)
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 2affb50dc1..3ed3abd02a 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'