blob: 6cf35d6311396fbfd2373ededf6f436a5bc153d0 (
plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
- project:
name: compass-project
installer: 'compass'
project: 'compass4nfv'
slave-label: 'compass-virtual'
stream:
- master:
branch: '{stream}'
gs-pathname: ''
- colorado:
branch: 'stable/{stream}'
gs-pathname: '/{stream}'
jobs:
- 'compass-build-iso-{stream}'
- 'compass-build-ppa-{stream}'
########################
# job templates
########################
- job-template:
name: 'compass-build-iso-{stream}'
concurrent: true
properties:
- throttle:
enabled: true
max-total: 1
max-per-node: 1
option: 'project'
parameters:
- project-parameter:
project: '{project}'
- gerrit-parameter:
branch: '{branch}'
- compass-project-parameter:
installer: '{installer}'
gs-pathname: '{gs-pathname}'
- 'opnfv-build-ubuntu-defaults'
- '{installer}-defaults'
scm:
- git-scm
triggers:
- timed: 'H 8 * * *'
builders:
- shell:
!include-raw-escape: ./compass-build.sh
- shell:
!include-raw-escape: ./compass-upload-artifact.sh
- shell:
!include-raw-escape: ./compass-workspace-cleanup.sh
- job-template:
name: 'compass-build-ppa-{stream}'
description: "build ppa(using docker) in huawei lab"
node: huawei-build
concurrent: true
properties:
- throttle:
enabled: true
max-total: 1
max-per-node: 1
option: 'project'
parameters:
- project-parameter:
project: '{project}'
- gerrit-parameter:
branch: '{branch}'
- compass-project-parameter:
installer: '{installer}'
gs-pathname: '{gs-pathname}'
- '{node}-defaults'
- '{installer}-defaults'
scm:
- git-scm
builders:
- shell:
!include-raw-escape: ./compass-makeppa.sh
########################
# parameter macros
########################
- parameter:
name: compass-project-parameter
parameters:
- string:
name: BUILD_DIRECTORY
default: $WORKSPACE/build_output
description: "Directory where the build artifact will be located upon the completion of the build."
- string:
name: CACHE_DIRECTORY
default: "$HOME/opnfv/cache/$PROJECT{gs-pathname}"
description: "Directory where the cache to be used during the build is located."
- string:
name: GS_URL
default: '$GS_BASE{gs-pathname}'
description: "URL to Google Storage."
- string:
name: PPA_REPO
default: "http://205.177.226.237:9999{gs-pathname}"
- string:
name: PPA_CACHE
default: "$WORKSPACE/work/repo/"
|