-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.yaml
61 lines (54 loc) · 1.13 KB
/
base.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
groups:
- name: base
jobs:
- centos-7
- ubuntu-trusty
- ubuntu-xenial
jobs:
- name: centos-7
serial: true
plan:
- get: pipeline
- put: docker-centos-7
params:
build: pipeline/base/centos-7
- name: ubuntu-trusty
serial: true
plan:
- get: pipeline
- put: docker-ubuntu-trusty
params:
build: pipeline/base/ubuntu-trusty
- name: ubuntu-xenial
serial: true
plan:
- get: pipeline
- put: docker-ubuntu-xenial
params:
build: pipeline/base/ubuntu-xenial
resources:
- name: pipeline
type: git
source:
uri: https://github.com/desource/pipeline.git
- name: docker-centos-7
type: docker-image
source:
repository: quay.io/desource/centos
username: {{quay-io-username}}
password: {{quay-io-password}}
tag: 7
- name: docker-ubuntu-trusty
type: docker-image
source:
repository: quay.io/desource/ubuntu
username: {{quay-io-username}}
password: {{quay-io-password}}
tag: trusty
- name: docker-ubuntu-xenial
type: docker-image
source:
repository: quay.io/desource/ubuntu
username: {{quay-io-username}}
password: {{quay-io-password}}
tag: xenial