TheBrokenRail
d268c1eec0
Some checks reported errors
Minetest-For-PinePhone/pipeline/head Something is wrong with the build of this commit
21 lines
471 B
Groovy
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|