AMDVLK/Jenkinsfile
Jacob He fd0e5dbc75 Update Jenkinsfile:
Build the deb package on Ubuntu only
2019-01-08 16:19:20 +08:00

27 lines
515 B
Groovy

#!/usr/bin/env groovy
/**
* Pipeline for building and upload deb package of AMDVLK
*
* Build parameters:
* @githubToken: token to access github
*/
pipeline {
agent none
stages {
stage("BuildPackage") {
agent { label "linux-build && ubuntu" }
steps {
runScript()
}
}
}
}
def runScript() {
def workDir = "${WORKSPACE}"
sh "python ${WORKSPACE}/utils/amdvlk_build_deb_from_tag.py -w ${WORKSPACE} -a ${githubToken}"
}