minecraft-pi-reborn/Jenkinsfile

36 lines
1.3 KiB
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-21 17:26:55 +00:00
stage('Debian Bullseye') {
2021-06-17 21:32:24 +00:00
agent {
docker {
image 'debian:bullseye'
2021-06-21 17:26:55 +00:00
args '-v /var/run/docker.sock:/var/run/docker.sock'
2021-06-17 21:32:24 +00:00
}
2020-09-26 23:48:47 +00:00
}
2021-06-21 17:26:55 +00:00
stages {
stage('Build') {
steps {
sh './scripts/ci/run.sh'
}
post {
success {
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
}
}
}
stage('Publish') {
steps {
sh 'apt-get update && apt-get install -y docker.io'
sh 'docker build --no-cache --tag thebrokenrail/minecraft-pi-reborn-server .'
withCredentials([usernamePassword(credentialsId: 'docker_hub_login', usernameVariable: 'DOCKER_HUB_USERNAME', passwordVariable: 'DOCKER_HUB_PASSWORD')]) {
sh 'docker login -u "${DOCKER_HUB_USERNAME}" -p "${DOCKER_HUB_PASSWORD}"'
}
sh 'docker push thebrokenrail/minecraft-pi-reborn-server'
}
2020-09-26 23:48:47 +00:00
}
}
}
}
}