2017-07-07 16:15:43 +01:00
|
|
|
pipeline {
|
|
|
|
|
agent {
|
|
|
|
|
label 'puppet'
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 17:54:26 +01:00
|
|
|
post {
|
|
|
|
|
always {
|
|
|
|
|
deleteDir() /* clean up our workspace */
|
|
|
|
|
}
|
|
|
|
|
success {
|
|
|
|
|
updateGitlabCommitStatus state: 'success'
|
|
|
|
|
}
|
|
|
|
|
failure {
|
|
|
|
|
updateGitlabCommitStatus state: 'failed'
|
|
|
|
|
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'support@confdroid.com', sendToIndividuals: true])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-08 16:30:26 +01:00
|
|
|
options {
|
|
|
|
|
gitLabConnection('sourcecode.confdroid.com')
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-07 16:15:43 +01:00
|
|
|
stages {
|
|
|
|
|
|
2020-12-01 18:03:55 +01:00
|
|
|
stage('pulling master') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
2018-04-10 12:56:10 +02:00
|
|
|
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
|
2017-07-07 16:15:43 +01:00
|
|
|
sh '''git config user.name "Jenkins Server"
|
|
|
|
|
git config user.email jenkins@confdroid.com
|
2020-12-01 18:03:55 +01:00
|
|
|
git pull origin master
|
2017-07-07 16:15:43 +01:00
|
|
|
git checkout -b jenkins '''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 14:49:38 +01:00
|
|
|
stage('install gems') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
|
|
|
|
sh 'bundle install'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 14:49:38 +01:00
|
|
|
stage('puppet parser') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
|
|
|
|
sh '''for file in $(find . -iname \'*.pp\'); do
|
2018-12-07 13:59:18 +01:00
|
|
|
/opt/puppetlabs/bin/puppet parser validate --color false --render-as s --modulepath=modules $file || exit 1;
|
2017-07-07 16:15:43 +01:00
|
|
|
done;'''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 14:49:38 +01:00
|
|
|
stage('check templates') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps{
|
|
|
|
|
sh '''for file in $(find . -iname \'*.erb\');
|
|
|
|
|
do erb -P -x -T "-" $file | ruby -c || exit 1;
|
|
|
|
|
done;'''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 14:49:38 +01:00
|
|
|
stage('puppet-lint') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
2020-12-04 14:49:38 +01:00
|
|
|
sh '''find . -iname *.pp -exec /var/lib/jenkins/bin/puppet-lint \\
|
|
|
|
|
--no-class_inherits_from_params_class-check \\
|
|
|
|
|
--no-variable_scope-check \\
|
|
|
|
|
--no-80chars-check \\
|
|
|
|
|
--no-arrow_alignment-check \\
|
|
|
|
|
--no-autoloader_layout-check \\
|
|
|
|
|
--no-140chars-check \\
|
|
|
|
|
--log-format "%{path}:%{line}:%{check}:%{KIND}:%{message}" {} \\;
|
|
|
|
|
'''
|
|
|
|
|
recordIssues aggregatingResults: true, tool: puppetLint()
|
|
|
|
|
}
|
2017-07-07 16:15:43 +01:00
|
|
|
}
|
|
|
|
|
|
2021-08-05 16:04:10 +02:00
|
|
|
stage('markdown-lint') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
2021-08-05 16:04:10 +02:00
|
|
|
sh '''
|
|
|
|
|
source /opt/rh/rh-ruby27/enable
|
|
|
|
|
mdl README.md
|
|
|
|
|
'''
|
2017-07-07 16:15:43 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-05 16:04:10 +02:00
|
|
|
stage('spell check') {
|
|
|
|
|
steps {
|
|
|
|
|
sh '''
|
|
|
|
|
mdspell -r -n -a "**/*.md"
|
|
|
|
|
'''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<<<<<<< HEAD
|
|
|
|
|
stage('SonarScan') {
|
|
|
|
|
steps {
|
|
|
|
|
sh '''
|
|
|
|
|
/opt/sonar-scanner/bin/sonar-scanner \
|
|
|
|
|
-Dsonar.projectKey=cd_apache \
|
|
|
|
|
-Dsonar.sources=. \
|
|
|
|
|
-Dsonar.host.url=http://sonarqube.confdroid.com \
|
|
|
|
|
-Dsonar.login=f4d68d1f43370b34439eee7fbf5e2b6182cf449c
|
|
|
|
|
'''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-07 16:15:43 +01:00
|
|
|
stage('create Puppet documention') {
|
|
|
|
|
steps {
|
2018-12-07 13:59:18 +01:00
|
|
|
sh '/opt/puppetlabs/bin/puppet strings'
|
2017-07-07 16:15:43 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-05 16:04:10 +02:00
|
|
|
=======
|
|
|
|
|
>>>>>>> fff4fbb07cecdaeee187b4566e948ac1794dc6e8
|
2020-12-01 17:54:26 +01:00
|
|
|
stage('update repo') {
|
2017-07-07 16:15:43 +01:00
|
|
|
steps {
|
2018-04-10 12:56:10 +02:00
|
|
|
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
|
2017-07-07 16:15:43 +01:00
|
|
|
sh '''git config user.name "Jenkins Server"
|
|
|
|
|
git config user.email jenkins@confdroid.com
|
|
|
|
|
echo `git add -A && git commit -am "recommit for updates in build $BUILD_NUMBER"`
|
2020-12-01 18:03:55 +01:00
|
|
|
git push origin HEAD:master'''
|
2017-07-07 16:15:43 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-01 17:54:26 +01:00
|
|
|
}
|
2017-07-07 16:15:43 +01:00
|
|
|
}
|