forked from Juniper/contrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zuul.yaml
73 lines (71 loc) · 1.94 KB
/
.zuul.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
62
63
64
65
66
67
68
69
70
71
72
73
- project:
name: Juniper/contrail
check:
jobs:
- contrail-go-docker
- contrail-go-docker-rhel7
gate:
queue: contrail-vnc
jobs:
- contrail-go-docker
- contrail-go-docker-rhel7
- job:
name: contrail-go-docker
description: |
Job that builds and tests Juniper/contrail project.
voting: True
parent: contrail-base2
timeout: 5400
required-projects:
- Juniper/contrail
run: playbooks/contrail-go-docker/run.yaml
post-run:
- playbooks/contrail-go-docker/post.yaml
nodeset:
nodes:
- name: builder
label: centos-7-4-builder-xxlarge
vars:
distro: ''
setup_docker_registry: true
enable_tpc_repo: false
docker:
- image: circleci/golang:1.12
- image: circleci/postgres:10.3-alpine
name: contrail_postgres
environment:
POSTGRES_USER: root
POSTGRES_DB: contrail123
command: postgres -c wal_level=logical
- image: gcr.io/etcd-development/etcd:v3.3.2
name: contrail_etcd
- job:
name: contrail-go-docker-rhel7
description: |
Job that builds and tests Juniper/contrail project.
voting: True
parent: contrail-base2
timeout: 5400
required-projects:
- Juniper/contrail
run: playbooks/contrail-go-docker/run.yaml
post-run:
- playbooks/contrail-go-docker/post.yaml
nodeset:
nodes:
- name: builder
label: rhel-7-builder-xxlarge
vars:
distro: '-rhel'
setup_docker_registry: true
enable_tpc_repo: false
docker:
- image: circleci/golang:1.12
- image: circleci/postgres:10.3-alpine
name: contrail_postgres
environment:
POSTGRES_USER: root
POSTGRES_DB: contrail123
command: postgres -c wal_level=logical
- image: gcr.io/etcd-development/etcd:v3.3.2
name: contrail_etcd