minecraft-pi-reborn/Jenkinsfile

36 lines
853 B
Plaintext
Raw Normal View History

2020-09-26 23:48:47 +00:00
pipeline {
2021-06-17 21:32:24 +00:00
agent none
2020-09-26 23:48:47 +00:00
stages {
2021-06-17 21:32:24 +00:00
stage('Build (Debian Bullseye)') {
agent {
docker {
image 'debian:bullseye'
}
2020-09-26 23:48:47 +00:00
}
steps {
2021-06-17 21:32:24 +00:00
sh './scripts/ci/run.sh'
2020-09-26 23:48:47 +00:00
}
2021-06-17 21:32:24 +00:00
post {
success {
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
2020-09-26 23:48:47 +00:00
}
}
}
2021-06-17 21:32:24 +00:00
stage('Build (Debian Buster)') {
agent {
docker {
image 'debian:buster'
}
}
2020-09-27 00:48:46 +00:00
steps {
2021-06-17 21:32:24 +00:00
sh './scripts/ci/run.sh'
2020-09-27 00:48:46 +00:00
}
post {
success {
2021-06-17 21:32:24 +00:00
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
2020-09-27 00:48:46 +00:00
}
}
}
2020-09-26 23:48:47 +00:00
}
}