kinesis360/Jenkinsfile

73 lines
2.4 KiB
Groovy

// https://zmk.dev/docs/development/setup#install-west
pipeline {
agent any
options {
timestamps()
ansiColor("xterm-256color")
disableConcurrentBuilds()
buildDiscarder(logRotator(daysToKeepStr: '30', numToKeepStr: '10', artifactNumToKeepStr: '1'))
}
environment {
VENV = "${env.WORKSPACE}@tmp/cache/venv"
PATH = "${env.VENV}/bin:${HOME}/.local/bin:${PATH}"
}
stages {
stage('checkout') {
steps {
script {
sh "env"
sh "git config --global color.ui true"
sh "ls --color=always -l"
env.VERSION = sh(script: "bin/version.py", returnStdout: true).trim()
currentBuild.description = env.VERSION
}
}
}
//stage('virtualenv') {
// steps {
// sh "python3 -m venv ${env.VENV}"
// sh "pip install -U west"
// }
//}
stage('make') {
steps {
sh ".pipeline/build.sh"
}
}
//stage('keymap-editor-web') {
// steps {
// script {
// dir("Adv360-Pro-KeymapEditor") {
// git "https://github.com/KinesisCorporation/Adv360-Pro-KeymapEditor"
// }
// sh ".pipeline/build-keymap-editor-web.sh"
// }
// }
//}
}
post {
success {
archiveArtifacts(
artifacts: "dist/firmware/Adv360-firmware_${env.VERSION}.tar.gz,dist/firmware/Adv360_firmware_${env.VERSION}.tar.gz.sha256.txt",
fingerprint: true
)
withCredentials([string(credentialsId: "gitea-user-ben-full-token", variable: 'GITEA_SECRET')]) {
sh 'curl -i -H "Authorization: token $GITEA_SECRET" --upload-file dist/firmware/Adv360-firmware_${VERSION}.tar.gz https://git.sudo.is/api/packages/ben/generic/kinesis360/${VERSION}/Adv360-firmware_${VERSION}.tar.gz'
// add -s -f to silence and fail on errors
}
}
always {
sh "docker image ls"
}
cleanup {
//sh ".pipeline/clean.sh"
cleanWs(deleteDirs: true, disableDeferredWipeout: true, notFailBuild: true)
dir(env.VENV) {
deleteDir()
}
}
}
}