Minetest-For-Mobile/Jenkinsfile
TheBrokenRail 72f4fa8abb
Some checks failed
Minetest-For-Mobile/pipeline/head There was a failure building this commit
Fix Jenkins
2020-12-21 14:32:06 -05:00

20 lines
382 B
Groovy

pipeline {
agent {
dockerfile {
filename 'Dockerfile'
}
}
stages {
stage('Build') {
steps {
sh './build-minetest.sh'
}
post {
success {
archiveArtifacts artifacts: '/out/*.deb', fingerprint: true
}
}
}
}
}