[Python-checkins] Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)

Steve Dower webhook-mailer at python.org
Mon Apr 1 12:10:26 EDT 2019


https://github.com/python/cpython/commit/b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece
commit: b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece
branch: master
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2019-04-01T09:10:20-07:00
summary:

Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines (GH-12649)

files:
M .azure-pipelines/posix-steps.yml

diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml
index 2affb50dc10e..3ed3abd02a71 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'
 



More information about the Python-checkins mailing list