Minetest-For-Mobile/Jenkinsfile
TheBrokenRail 5b6bf471fb
Some checks failed
Minetest-For-Mobile/pipeline/head There was a failure building this commit
Streamline
2020-12-21 15:11:17 -05:00

23 lines
490 B
Groovy

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