This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/groovy | |
@Library('github.com/cdenneen/jenkins-shared@master') _ | |
node { | |
deleteDir() | |
stage 'Checkout' | |
git branch: 'production', url: 'https://github.com/cdenneen/control-repo.git' | |
def stashName = "${env.JOB_NAME}_${env.BUILD_NUMBER}" | |
stash stashName | |
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim() | |
// short SHA, possibly better for chat notifications, etc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
deleteDir() | |
stage 'Checkout' | |
git branch: 'production', url: 'https://github.com/cdenneen/control-repo.git' | |
// def stashName = "${env.JOB_NAME}_${env.BUILD_NUMBER}" | |
// stash stashName | |
// stage 'Test' | |
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim() | |
// short SHA, possibly better for chat notifications, etc. | |
shortCommit = gitCommit.take(6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jenkinsci/jenkins | |
MAINTAINER Chris Denneen "[email protected]" | |
USER root | |
RUN apt-get update && apt-get install -y build-essential libyaml-dev ruby-dev | |
USER jenkins | |
RUN /bin/bash -l -c "curl -L https://get.rvm.io | bash -s stable" | |
RUN /bin/bash -l -c "source ~/.rvm/scripts/rvm" | |
#RUN /bin/bash -l -c "source ~/.bash_profile; rvm requirements" | |
RUN /bin/bash -l -c "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
deleteDir() | |
stage 'Checkout' | |
git branch: 'production', url: 'https://github.com/cdenneen/control-repo.git' | |
stash "${env.JOB_NAME}" | |
stage 'Test' | |
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim() | |
// short SHA, possibly better for chat notifications, etc. | |
shortCommit = gitCommit.take(6) | |
sh "echo $shortCommit" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
stage 'Checkout' | |
git branch: 'production', url: 'https://github.com/cdenneen/control-repo.git' | |
stash "${env.JOB_NAME}" | |
stage: 'Test' | |
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim() | |
// short SHA, possibly better for chat notifications, etc. | |
shortCommit = gitCommit.take(6) | |
sh "echo $shortCommit" | |
def matrix = [:] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
stage 'Checkout' | |
git branch: 'logging5', credentialsId: 'XXX', url: 'YYY' | |
stage 'Test' | |
gitCommit = sh(returnStdout: true, script: 'git rev-parse HEAD').trim() | |
// short SHA, possibly better for chat notifications, etc. | |
shortCommit = gitCommit.take(6) | |
def versions = [:] | |
def rubyVersion = ['2.1', '2.3'] | |
for (int x = 0; x < rubyVersion.size(); x++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node { | |
stage('fetch code') | |
checkout scm | |
stash name: 'infra-stash' | |
stage('build') | |
dir('/var/jenkins_home/workspace/shared/jobs/build/puppet lint') { | |
deleteDir() | |
unstash 'infra-stash' | |
} | |
build job: 'shared/jobs/build/puppet lint' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrixJob('shared/jobs/build/puppet unit') { | |
logRotator(-1, 5, -1, -1) | |
parameters { | |
stringParam('RUBY_VERSIONS', '2.1.9 2.3.3', 'Ruby version to select') | |
stringParam('PUPPET_VERSIONS', '4.7.0 4.8.1', 'Puppet version to select') | |
} | |
axes { | |
label('puppet') | |
dynamicAxis('RUBY_VERSION','$RUBY_VERSIONS') | |
dynamicAxis('PUPPET_GEM_VERSION','$PUPPET_VERSIONS') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
file {'test': | |
ensure => present, | |
require => Class['epel'] | |
} | |
include ::epel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
publicbucket: 'myBucket' | |
profile::searchinfra::idx::esindexer: | |
app_source_bucket_dirkey: 'ESIndexer' | |
app_source_bucket: "http://s3.amazonaws.com/%{::publicbucket}/%{hiera('profile::searchinfra::idx::esindexer[app_source_bucket_dirkey]')}" |