blob: fdeddc6804d0168294486e6976367731a49f9def (
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
|
########################
# Job configuration for joid
########################
- project:
name: 'joid'
installer: 'joid'
controller: 'odl'
pod:
- 'intel-pod5'
- 'orange-pod2'
stream:
- master:
branch: 'master'
gs-pathname: ''
jobs:
- 'joid-{controller}-{pod}-daily-{stream}'
- 'joid-deploy-{pod}-daily-{stream}'
########################
# job templates
########################
- job-template:
name: 'joid-{controller}-{pod}-daily-{stream}'
disabled: false
concurrent: false
parameters:
- project-parameter:
project: '{installer}'
- 'intel-us-build-1-defaults'
- '{installer}-defaults':
controller: '{controller}'
scm:
- git-scm:
credentials-id: '{ssh-credentials}'
refspec: ''
branch: '{branch}'
builders:
- trigger-builds:
- project: 'joid-deploy-{pod}-daily-{stream}'
git-revision: true
block: true
predefined-parameters:
CONTROLLER={controller}
- job-template:
name: 'joid-deploy-{pod}-daily-{stream}'
disabled: false
concurrent: false
wrappers:
- build-name:
name: '$BUILD_NUMBER: {installer} $CONTROLLER'
parameters:
- project-parameter:
project: '{installer}'
- '{pod}-defaults'
- '{installer}-defaults':
controller: '{controller}'
scm:
- git-scm:
credentials-id: '{ssh-credentials}'
refspec: ''
branch: '{branch}'
builders:
- '{pod}-builder'
########################
# builder macros
########################
- builder:
name: intel-pod5-builder
builders:
- shell: |
#!/bin/bash
echo "Running $INSTALLER_NAME with controller $CONTROLLER"
echo "Please note that this is a quick try to see how joid deployment works"
echo
echo "Executing clean.sh"
cd $WORKSPACE/ci
./clean.sh
- shell: |
cd $WORKSPACE/ci
echo "Executing 02-maasdeploy.sh intelpod5"
./02-maasdeploy.sh intelpod5
- shell: |
cd $WORKSPACE/ci
echo "Executing deploy.sh -o liberty -s $CONTROLLER -t ha -l intelpod5"
./deploy.sh -o liberty -s $CONTROLLER -t ha -l intelpod5
- builder:
name: orange-pod2-builder
builders:
- shell: |
#!/bin/bash
echo "Running $INSTALLER_NAME with controller $CONTROLLER"
echo "Please note that this is WIP generic builder"
echo
echo "Executing clean.sh"
cd $WORKSPACE/ci
./clean.sh
- shell:
!include-raw ./joid-deploy.sh
|