Files
confdroid_apache/Jenkinsfile

89 lines
2.3 KiB
Plaintext
Raw Normal View History

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 {
2025-05-05 14:29:35 +02:00
gitLabConnection('gitlab.confdroid.com')
2020-12-08 16:30:26 +01:00
}
stages {
2020-12-01 18:03:55 +01:00
stage('pulling master') {
steps {
2018-04-10 12:56:10 +02:00
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
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
git checkout -b jenkins '''
}
}
}
2020-12-04 14:49:38 +01:00
stage('puppet parser') {
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;
done;'''
}
}
2020-12-04 14:49:38 +01:00
stage('check templates') {
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') {
steps {
sh '''/usr/local/bin/puppet-lint .
2020-12-04 14:49:38 +01:00
'''
}
}
2025-05-05 14:29:35 +02:00
stage('SonarScan') {
2021-08-05 16:04:10 +02:00
steps {
sh '''
/opt/sonar-scanner/bin/sonar-scanner \
-Dsonar.projectKey=cd_apache \
-Dsonar.sources=. \
2025-05-05 14:29:35 +02:00
-Dsonar.host.url=https://sonarqube.confdroid.com \
-Dsonar.token=sqa_aca21cc41336d0f31987ed196ccfb9be55ded774
2021-08-05 16:04:10 +02:00
'''
}
}
2025-05-05 14:29:35 +02:00
stage('create Puppet documentation') {
steps {
2018-12-07 13:59:18 +01:00
sh '/opt/puppetlabs/bin/puppet strings'
}
}
2020-12-01 17:54:26 +01:00
stage('update repo') {
steps {
2018-04-10 12:56:10 +02:00
sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) {
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"`
2025-05-19 16:22:01 +02:00
git push origin HEAD:master'''
}
}
}
2020-12-01 17:54:26 +01:00
}
}