From 86195393dbbc7e4d76bf12bb6c38991c6240d833 Mon Sep 17 00:00:00 2001 From: Jan Boon Date: Sat, 26 Jan 2019 00:41:31 +0800 Subject: [PATCH] Update: Pipeline script --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6ad47eba4..6e0f2b2a7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,8 +4,14 @@ jobs: vmImage: 'Ubuntu-16.04' steps: - script: | + sudo apt-get update + sudo apt-get install -y software-properties-common + sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get update sudo apt-get install cmake build-essential -y + sudo apt-get install gcc-8 g++-8 -y + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 + sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 60 sudo apt-get install libmysqlclient-dev -y sudo apt-get install bison autoconf automake -y sudo apt-get install libpng12-dev libjpeg62-dev -y