Attempt to support several Ubuntu LTSs to CI
(cherry picked from commit 57463a31f8
)
This commit is contained in:
parent
4e0081ef21
commit
00c29b80a6
|
@ -63,9 +63,17 @@ jobs:
|
||||||
artifactName: Windows Release Installer
|
artifactName: Windows Release Installer
|
||||||
|
|
||||||
- job: LinuxBuild
|
- job: LinuxBuild
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
ubuntu-16.04:
|
||||||
|
imageName: 'ubuntu-16.04'
|
||||||
|
ubuntu-18.04:
|
||||||
|
imageName: 'ubuntu-18.04'
|
||||||
|
ubuntu-20.04:
|
||||||
|
imageName: 'ubuntu-20.04'
|
||||||
displayName: Linux Build
|
displayName: Linux Build
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'ubuntu-20.04'
|
vmImage: $(imageName)
|
||||||
steps:
|
steps:
|
||||||
- script: sudo apt-get update -y
|
- script: sudo apt-get update -y
|
||||||
- script: sudo apt-get install -y libxtst-dev qtdeclarative5-dev libavahi-compat-libdnssd-dev libcurl4-openssl-dev
|
- script: sudo apt-get install -y libxtst-dev qtdeclarative5-dev libavahi-compat-libdnssd-dev libcurl4-openssl-dev
|
||||||
|
|
Loading…
Reference in New Issue