Minetest-For-Mobile/Jenkinsfile

20 lines
382 B
Plaintext
Raw Normal View History

2020-12-21 16:53:31 +00:00
pipeline {
agent {
dockerfile {
2020-12-21 19:32:06 +00:00
filename 'Dockerfile'
2020-12-21 16:53:31 +00:00
}
}
stages {
stage('Build') {
steps {
2020-12-21 19:32:06 +00:00
sh './build-minetest.sh'
2020-12-21 16:53:31 +00:00
}
post {
success {
2020-12-21 19:32:06 +00:00
archiveArtifacts artifacts: '/out/*.deb', fingerprint: true
2020-12-21 16:53:31 +00:00
}
}
}
}
}