Update Jenkinsfile:

Build the deb package on Ubuntu only
This commit is contained in:
Jacob He 2019-01-08 16:19:20 +08:00
parent e24326a360
commit fd0e5dbc75

2
Jenkinsfile vendored
View File

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