Minetest-For-Mobile/Jenkinsfile

23 lines
497 B
Plaintext
Raw Normal View History

2020-12-21 11:53:31 -05:00
pipeline {
agent {
dockerfile {
2020-12-21 14:32:06 -05:00
filename 'Dockerfile'
2020-12-21 11:53:31 -05:00
}
}
stages {
stage('Build') {
steps {
2020-12-21 14:50:41 -05:00
# Build
sh 'cd /app; ./build-minetest.sh'
# Copy Artifacts
sh 'mkdir out; cp /out/*.deb out'
2020-12-21 11:53:31 -05:00
}
post {
success {
2020-12-21 14:50:41 -05:00
archiveArtifacts artifacts: 'out/*.deb', fingerprint: true
2020-12-21 11:53:31 -05:00
}
}
}
}
}