Minetest-For-Mobile/Jenkinsfile
TheBrokenRail 9b9611f365
Some checks reported errors
Minetest-For-Mobile/pipeline/head Something is wrong with the build of this commit
Fix Jenkins Comment
2020-12-21 14:54:48 -05:00

23 lines
499 B
Groovy

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