-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Updated upstream manifest modification process
- Loading branch information
1 parent
c4b9e37
commit 2049e10
Showing
7 changed files
with
32 additions
and
18 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,19 +20,20 @@ meta: | |
pipeline: (( grab meta.name )) | ||
|
||
upstream: | ||
package: example # dummy value for things that don't use upstream | ||
path: (( grab meta.upstream.package )) | ||
org: cloudfoundry | ||
repo: (( concat meta.upstream.org "/" meta.upstream.package )) | ||
url: (( concat "https://github.com/" meta.upstream.repo ".git" )) | ||
manifest: | ||
package: example # dummy value for things that don't use upstream | ||
path: (( grab meta.upstream.manifest.package )) | ||
org: cloudfoundry | ||
repo: (( concat meta.upstream.manifest.org "/" meta.upstream.manifest.package )) | ||
url: (( concat "https://github.com/" meta.upstream.manifest.repo ".git" )) | ||
|
||
vault: | ||
url: (( param "Please provide the address of your Vault" )) | ||
token: (( param "Please provide a Vault Token" )) | ||
|
||
git: | ||
email: [email protected] | ||
name: Genesis CI Bot | ||
email: ((github.email)) | ||
name: ((github.name)) | ||
|
||
image: | ||
name: ((image/genesis.url)) | ||
|
@@ -104,7 +105,7 @@ groups: | |
|
||
- name: upstream | ||
jobs: | ||
- upstream-sync | ||
- upstream-manifest | ||
|
||
- name: versions | ||
jobs: | ||
|
12 changes: 6 additions & 6 deletions
12
ci/pipeline/jobs/upstream-sync.yml → ci/pipeline/jobs/upstream-manifest.yml
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
4 changes: 2 additions & 2 deletions
4
ci/pipeline/resources/upstream.yml → ci/pipeline/resources/upstream-manifest.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
resources: | ||
- name: upstream | ||
- name: upstream-manifest | ||
type: git | ||
check_every: 168h | ||
source: | ||
uri: (( grab meta.upstream.url )) | ||
uri: (( grab meta.upstream.manifest.url )) | ||
branch: master | ||
ignore_paths: [ci/*] |
File renamed without changes.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
repos: | ||
- name: bosh | ||
repo: https://github.com/cloudfoundry/bosh | ||
- name: credhub | ||
repo: https://github.com/pivotal/credhub-release | ||
- name: bpm | ||
repo: https://github.com/cloudfoundry/bpm-release | ||
- name: uaa | ||
repo: https://github.com/cloudfoundry/uaa-release | ||
|