Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
Fix name of application in Jenkins deployment step
Browse files Browse the repository at this point in the history
The Jenkins integration deployment is failing because the Jenkinsfile
config specifies the repository name (business-support-finder) rather
than the name matching the application in Puppet
(businesssupportfinder).
  • Loading branch information
suzannehamilton committed Dec 21, 2016
1 parent d904ac0 commit 610eef3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env groovy

REPOSITORY = 'business-support-finder'
APPLICATION_NAME = 'businesssupportfinder'

node {
def govuk = load '/var/lib/jenkins/groovy_scripts/govuk_jenkinslib.groovy'
Expand Down Expand Up @@ -59,7 +60,7 @@ node {
govuk.pushTag(REPOSITORY, env.BRANCH_NAME, 'release_' + env.BUILD_NUMBER)
}

govuk.deployIntegration(REPOSITORY, env.BRANCH_NAME, 'release', 'deploy')
govuk.deployIntegration(APPLICATION_NAME, env.BRANCH_NAME, 'release', 'deploy')
}

} catch (e) {
Expand Down

0 comments on commit 610eef3

Please sign in to comment.