-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpipeline.yml
More file actions
39 lines (37 loc) · 762 Bytes
/
Copy pathpipeline.yml
File metadata and controls
39 lines (37 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
resources:
- name: source-code
type: git
source:
uri: https://github.com/vchrisb/cf-HelloWorld.git
branch: master
- name: cf
type: cf
source:
api: ((cf-api))
username: ((cf-credentials.username))
password: ((cf-credentials.password))
organization: ((cf-organization))
space: ((cf-space))
#skip_cert_check: true
jobs:
- name: test
public: true
plan:
- get: source-code
trigger: true
- task: test
file: source-code/ci/test.yml
- name: build
public: true
plan:
- get: source-code
trigger: true
passed: [test]
- task: build
file: source-code/ci/build.yml
- put: cf
params:
manifest: build-output/manifest.yml
path: build-output/
current_app_name: cf-HelloWorld