👷🏻‍♀️ Add Jenkinsfile

This commit is contained in:
Ben Chatelain 2019-01-06 14:13:29 -07:00
parent 6a3d2e7342
commit cba32d3535

57
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,57 @@
#!/usr/bin/env groovy
/*
* Jenkinsfile
* mas-cli
*
* Declarative Jenkins pipeline script - https://jenkins.io/doc/book/pipeline/
*/
pipeline {
agent any
options {
// https://jenkins.io/doc/book/pipeline/syntax/#options
buildDiscarder(logRotator(numToKeepStr: '100'))
disableConcurrentBuilds()
timeout(time: 1, unit: 'HOURS')
timestamps()
}
triggers {
// cron('H */4 * * 1-5')
githubPush()
}
environment {
LANG = 'en_US.UTF-8'
LANGUAGE = 'en_US.UTF-8'
LC_ALL = 'en_US.UTF-8'
}
stages {
stage('Assemble') {
steps {
sh 'script/bootstrap'
sh 'script/build'
sh 'script/archive'
sh 'script/package'
}
}
stage('Test') {
steps {
sh 'script/test'
}
}
stage('Lint') {
steps {
echo 'Not implemented'
}
}
stage('Danger') {
steps {
// sh 'bundle install --verbose'
sh 'bundle exec danger --verbose'
}
}
}
}