TheBrokenRail
65d69fb413
Some checks failed
Minetest-For-Mobile/pipeline/head There was a failure building this commit
23 lines
497 B
Groovy
23 lines
497 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|