From 9a9e2cc5df73f8b0d60a99b478ba916310cb03fa Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 12 May 2019 22:53:15 +0200 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d4829e564..7171f7c9e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -88,10 +88,12 @@ jobs: OpenVirtualAppliance: board: 'ova' steps: - - script: sudo dockerd -s vfs &> /dev/null & - displayName: 'Start docker' - script: | - ps -ax - ls -ls - make $(board) + sudo dockerd -s vfs &> /dev/null & + + sudo mkdir -p /build + sudo mount -o bind $(pwd) /build + + cd /build + sudo make $(board) displayName: 'Build $(board)'