Skip to content

Commit

Permalink
Updates to fix concourse
Browse files Browse the repository at this point in the history
  • Loading branch information
geofffranks committed Jun 15, 2016
1 parent 94c5f54 commit 772da17
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ meta:
name: (( param "Please name your pipeline" ))
target: (( param "Please identify the name of the target Concourse CI" ))
url: (( param "Please specify the full url of the target Concourse CI" ))
pipeline: (( grab meta.name ))
pipeline: (( concat meta.name "-boshrelease" ))

aws:
bucket: (( concat meta.name "-pipeline" ))
bucket: (( concat meta.pipeline "-pipeline" ))
access_key: (( param "Please set your AWS Access Key ID for your pipeline S3 Bucket" ))
secret_key: (( param "Please set your AWS Secret Key ID for your pipeline S3 Bucket" ))

Expand Down Expand Up @@ -46,7 +46,7 @@ meta:
icon: http://cl.ly/image/3e1h0H3H2s0P/concourse-logo.png

groups:
- name: (( grab meta.name ))
- name: (( grab meta.pipeline ))
jobs:
- testflight
- rc
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
BOSH_LITE_TARGET: (( grab meta.bosh-lite.target ))
BOSH_LITE_USERNAME: (( grab meta.bosh-lite.username ))
BOSH_LITE_PASSWORD: (( grab meta.bosh-lite.password ))
BOSH_LITE_DEPLOYMENT: (( concat "ci-" meta.name ))
BOSH_LITE_DEPLOYMENT: (( concat "ci-" meta.pipeline ))
on_failure:
put: notify
params:
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
BOSH_LITE_TARGET: (( grab meta.bosh-lite.target ))
BOSH_LITE_USERNAME: (( grab meta.bosh-lite.username ))
BOSH_LITE_PASSWORD: (( grab meta.bosh-lite.password ))
BOSH_LITE_DEPLOYMENT: (( concat "ci-" meta.name ))
BOSH_LITE_DEPLOYMENT: (( concat "ci-" meta.pipeline ))

AWS_ACCESS_KEY: (( grab meta.aws.access_key ))
AWS_SECRET_KEY: (( grab meta.aws.secret_key ))
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
text: (( grab meta.slack.test_failure ))
- put: s3
params:
from: gh/artifacts/.*-(.*).tgz
file: (( concat "gh/artifacts/" meta.name "-*.tgz" ))

- name: spruce
public: true
Expand Down
1 change: 1 addition & 0 deletions ci/release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updates to make release pipeline work again.
2 changes: 1 addition & 1 deletion ci/settings.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
meta:
name: jumpbox-boshrelease
name: jumpbox
url: https://ci.vsphere.starkandwayne.com/
target: sw
aws:
Expand Down

0 comments on commit 772da17

Please sign in to comment.