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 {
|
|
dockerfile {
|
|
label 'arm'
|
|
filename 'Containerfile'
|
|
args '-u 0:0'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh '. ./build.sh'
|
|
}
|
|
}
|
|
stage('Publish') {
|
|
steps {
|
|
sshagent(['jenkins-sftp']) {
|
|
sh '. ./publish.sh'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|