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)'