Sha256: 1feccac7f01906914ebc3ba77e1845722af03f36a219ce96fa8a30dfefbc3a6f
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
#!/usr/bin/env groovy node { def govuk = load '/var/lib/jenkins/groovy_scripts/govuk_jenkinslib.groovy' try { stage('Checkout') { checkout scm } stage('Clean') { govuk.cleanupGit() govuk.mergeMasterBranch() } stage("Set up content schema dependency") { govuk.contentSchemaDependency() } stage('Bundle') { echo 'Bundling' sh("bundle install --path ${JENKINS_HOME}/bundles/${JOB_NAME}") } stage('Linter') { govuk.rubyLinter() } stage('Tests') { govuk.setEnvar('RAILS_ENV', 'test') govuk.runTests('spec') } if(env.BRANCH_NAME == "master") { stage('Publish Gem') { sshagent(['govuk-ci-ssh-key']) { govuk.runRakeTask("publish_gem --trace") } } } } catch (e) { currentBuild.result = 'FAILED' step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'govuk-ci-notifications@digital.cabinet-office.gov.uk', sendToIndividuals: true]) throw e } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
govuk_navigation_helpers-2.3.1 | Jenkinsfile |
govuk_navigation_helpers-2.3.0 | Jenkinsfile |
govuk_navigation_helpers-2.2.0 | Jenkinsfile |