From 27c25da90d9c5749826aeef27cf1805eb6c8efa3 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 12 May 2019 21:49:13 +0200 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c7af96c6d..4e9c924f6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -67,24 +67,24 @@ jobs: - script: | set -e - sudo apt-get update - sudo apt-get install -y --no-install-recommends \ + apt-get update + apt-get install -y --no-install-recommends \ apt-transport-https ca-certificates curl \ gpg-agent software-properties-common - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" + curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - + add-apt-repository "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt-get update - sudo apt-get install -y --no-install-recommends \ + apt-get update + apt-get install -y --no-install-recommends \ docker-ce displayName: 'Setup docker' - script: | - sudo apt-get install -y --no-install-recommends \ + apt-get install -y --no-install-recommends \ wget patch vim cpio python unzip rsync bc bzip2 ncurses-dev \ git make g++ file perl bash binutils locales qemu-utils bison flex displayName: 'Setup buildroot' - - script: sudo dockerd -s vfs &> /dev/null & + - script: dockerd -s vfs &> /dev/null & displayName: 'Start docker' - - script: sudo make $(board) + - script: make $(board) displayName: 'Build $(board)'