Minetest-For-Mobile/Jenkinsfile
TheBrokenRail d268c1eec0
Some checks reported errors
Minetest-For-PinePhone/pipeline/head Something is wrong with the build of this commit
Add Jenkins
2020-12-21 11:53:31 -05:00

21 lines
471 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/**', fingerprint: true
}
}
}
}
}