Update Jenkinsfile:

Build the deb package on linux-build agent
This commit is contained in:
Jacob He 2019-01-08 15:00:34 +08:00
parent 9b0dacc35f
commit e24326a360

2
Jenkinsfile vendored
View File

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