This repository has been archived on 2022-04-30. You can view files and clone it, but cannot push or open issues/pull-requests.
homeassistant-wheels/Jenkinsfile

26 lines
456 B
Groovy

pipeline {
agent {
label 'armv7hl'
}
environment {
TMPDIR = pwd(tmp: true)
XDG_CACHE_HOME = "${WORKSPACE}/.cache"
}
stages {
stage('Build') {
steps {
sh '. ./build.sh'
}
}
stage('Publish') {
steps {
sshagent(['jenkins-sftp']) {
sh '. ./publish.sh'
}
}
}
}
}