Update Jenkinsfile:

Build deb package on Ubuntu 16.04 so that it could be installed for both
Ubuntu 18.04 and Ubuntu 16.04
This commit is contained in:
Jacob He 2019-01-08 16:39:48 +08:00
parent fd0e5dbc75
commit 45222f88e3

2
Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ pipeline {
agent none
stages {
stage("BuildPackage") {
agent { label "linux-build && ubuntu" }
agent { label "ubuntu && 16-04" }
steps {
runScript()
}