mirror of
https://github.com/philippdieter/puppet-ldapquery.git
synced 2025-10-13 04:54:47 +00:00
20 lines
296 B
Groovy
20 lines
296 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('bundle') {
|
|
steps {
|
|
sh 'bundle'
|
|
}
|
|
}
|
|
stage('rake test') {
|
|
steps {
|
|
sh 'bundle exec rake test'
|
|
}
|
|
}
|
|
stage('module:build') {
|
|
steps {
|
|
sh 'bundle exec rake module:build'
|
|
}
|
|
}
|
|
}
|
|
} |