This repository has been archived on 2022-04-30. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|