From 488a74994f0b2d651b7e4223872428ba7df72c5d Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 1 Apr 2019 07:52:26 -0700 Subject: [PATCH 1/2] Temporary workaround for an ACL issue on Ubuntu on Azure Pipelines --- .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 2affb50dc10e59..e71bd08d8aa3bc 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: setfacl -Rb /home/vsts + displayName: 'Workaround ACL issue' + - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependencies }}.sh $(openssl_version) displayName: 'Install dependencies' From 29b8b08a2ae1c3ccc25ed9c0ab9c7cf55df4f383 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Mon, 1 Apr 2019 07:57:27 -0700 Subject: [PATCH 2/2] Sudo make me a sandwich --- .azure-pipelines/posix-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml index e71bd08d8aa3bc..3ed3abd02a7146 100644 --- a/.azure-pipelines/posix-steps.yml +++ b/.azure-pipelines/posix-steps.yml @@ -11,7 +11,7 @@ steps: fetchDepth: 5 # Work around a known issue affecting Ubuntu VMs on Pipelines -- script: setfacl -Rb /home/vsts +- script: sudo setfacl -Rb /home/vsts displayName: 'Workaround ACL issue' - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependencies }}.sh $(openssl_version)