blob: 01e2f100c430631c061b786bad377f1fe34f2bd0 [file] [log] [blame]
def common = new com.mirantis.mk.Common()
def git = new com.mirantis.mk.Git()
def aptly = new com.mirantis.mk.Aptly()
def timestamp = common.getDatetime()
def version = "0.1~${timestamp}"
node('docker') {
try{
stage("cleanup") {
sh("rm -rf * || true")
}
stage("checkout") {
git.checkoutGitRepository(
"libvirt-exporter-${version}",
"${SOURCE_URL}",
SOURCE_BRANCH,
SOURCE_CREDENTIALS,
true,
30,
1
)
}
stage("build binary") {
dir("libvirt-exporter-${version}") {
sh("sed -i 's/VERSION/${version}/g' debian/changelog")
sh("debuild -us -uc")
}
archiveArtifacts artifacts: "*.deb"
}
if (UPLOAD_APTLY.toBoolean()) {
lock("aptly-api") {
stage("upload") {
def buildSteps = [:]
def debFiles = sh script: "ls *.deb", returnStdout: true
def debFilesArray = debFiles.trim().tokenize()
def workspace = common.getWorkspace()
for (int i = 0; i < debFilesArray.size(); i++) {
def debFile = debFilesArray[i];
buildSteps[debFiles[i]] = aptly.uploadPackageStep(
"${workspace}/"+debFile,
APTLY_URL,
APTLY_REPO,
true
)
}
parallel buildSteps
}
stage("publish") {
aptly.snapshotRepo(APTLY_URL, APTLY_REPO, timestamp)
aptly.publish(APTLY_URL)
}
}
}
} catch (Throwable e) {
// If there was an exception thrown, the build failed
currentBuild.result = "FAILURE"
throw e
} finally {
common.sendNotification(currentBuild.result,"",["slack"])
if (currentBuild.result != 'FAILURE') {
sh("rm -rf *")
}
}
}