662d93ccc3
Build the package on Ubuntu 16.04
27 lines
506 B
Groovy
27 lines
506 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 "ubuntu-16.04" }
|
|
steps {
|
|
runScript()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
def runScript() {
|
|
def workDir = "${WORKSPACE}"
|
|
|
|
sh "python ${WORKSPACE}/utils/amdvlk_build_deb_from_tag.py -w ${WORKSPACE} -a ${githubToken}"
|
|
}
|