Update: Pipeline script

feature/pipeline-tools
Jan Boon 6 years ago
parent 692b017850
commit 86195393db

@ -4,8 +4,14 @@ jobs:
vmImage: 'Ubuntu-16.04' vmImage: 'Ubuntu-16.04'
steps: steps:
- script: | - 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 update
sudo apt-get install cmake build-essential -y 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 libmysqlclient-dev -y
sudo apt-get install bison autoconf automake -y sudo apt-get install bison autoconf automake -y
sudo apt-get install libpng12-dev libjpeg62-dev -y sudo apt-get install libpng12-dev libjpeg62-dev -y

Loading…
Cancel
Save