TheBrokenRail
72f4fa8abb
Some checks failed
Minetest-For-Mobile/pipeline/head There was a failure building this commit
20 lines
382 B
Groovy
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|