Update: Pipeline script
This commit is contained in:
parent
692b017850
commit
86195393db
1 changed files with 6 additions and 0 deletions
|
@ -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…
Reference in a new issue