Minetest-For-Mobile/Jenkinsfile

20 lines
382 B
Plaintext
Raw Normal View History

2020-12-21 08:53:31 -08:00
pipeline {
agent {
dockerfile {
2020-12-21 11:32:06 -08:00
filename 'Dockerfile'
2020-12-21 08:53:31 -08:00
}
}
stages {
stage('Build') {
steps {
2020-12-21 11:32:06 -08:00
sh './build-minetest.sh'
2020-12-21 08:53:31 -08:00
}
post {
success {
2020-12-21 11:32:06 -08:00
archiveArtifacts artifacts: '/out/*.deb', fingerprint: true
2020-12-21 08:53:31 -08:00
}
}
}
}
}