Minetest-For-Mobile/Jenkinsfile
TheBrokenRail 94d0078b2d
Some checks failed
Minetest-For-Mobile/pipeline/head There was a failure building this commit
Fix Jenkins
2020-12-21 13:37:43 -05:00

21 lines
474 B
Groovy

pipeline {
agent {
dockerfile {
filename 'Dockerfile.build'
args '-v /var/run/docker.sock:/var/run/docker.sock'
}
}
stages {
stage('Build') {
steps {
sh 'DOCKER_BUILD_OPTIONS="--no-cache" ./run.sh'
}
post {
success {
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
}
}
}
}
}