-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathJenkinsfile
149 lines (144 loc) · 4.8 KB
/
Jenkinsfile
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
pipeline {
agent any
stages {
stage('Container Build') {
parallel {
stage('Container Build') {
steps {
echo 'Building...'
}
}
stage('Building tng-cat...') {
steps {
sh 'docker build -t registry.sonata-nfv.eu:5000/tng-cat .'
}
}
}
}
stage('Unit Test') {
parallel {
stage('Unit Tests') {
steps {
echo 'Performing Unit Tests'
}
}
stage('Running Unit Tests') {
steps {
sh 'if ! [[ "$(docker inspect -f {{.State.Running}} mongo 2> /dev/null)" == "" ]]; then docker rm -fv mongo ; fi || true'
sh 'docker run -p 27017:27017 -d --net tango --network-alias mongo --name mongo mongo'
sh 'sleep 10'
sh 'docker run --rm=true --net tango --network-alias tng-cat -e RACK_ENV=test -v "$(pwd)/spec/reports:/app/spec/reports" registry.sonata-nfv.eu:5000/tng-cat rake ci:all'
sh 'if ! [[ "$(docker inspect -f {{.State.Running}} mongo 2> /dev/null)" == "" ]]; then docker rm -fv mongo ; fi || true'
}
}
}
}
stage('Containers Publication') {
parallel {
stage('Containers Publication') {
steps {
echo 'Publication of containers in local registry....'
}
}
stage('Publishing tng-cat') {
steps {
sh 'docker push registry.sonata-nfv.eu:5000/tng-cat'
}
}
}
}
stage('Deployment in Pre-Integration SP and VnV Environment') {
parallel {
stage('Deployment in Pre-Integration SP and VnV Environment') {
steps {
echo 'Deploying in pre-integration...'
}
}
stage('Deploying') {
steps {
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=pre-int-sp component=catalogues"'
sh 'ansible-playbook roles/vnv.yml -i environments -e "target=pre-int-vnv component=catalogues"'
}
}
}
}
}
stage('Promoting containers to integration env') {
when {
branch 'master'
}
parallel {
stage('Publishing containers to int') {
steps {
echo 'Promoting containers to integration'
}
}
stage('tng-cat') {
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-cat:latest registry.sonata-nfv.eu:5000/tng-cat:int'
sh 'docker push registry.sonata-nfv.eu:5000/tng-cat:int'
}
}
}
}
stage('Promoting/deploying Containers to Integration SP and VnV Environment') {
when {
branch 'master'
}
steps {
echo 'Stage: Promoting containers to integration env'
sh 'docker push registry.sonata-nfv.eu:5000/tng-cat:int'
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=int-sp component=catalogues"'
}
}
}
stage('Promoting release v5.0') {
when {
branch 'v5.0'
}
stages {
stage('Generating release') {
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-cat:latest registry.sonata-nfv.eu:5000/tng-cat:v5.0'
sh 'docker tag registry.sonata-nfv.eu:5000/tng-cat:latest sonatanfv/tng-cat:v5.0'
sh 'docker push registry.sonata-nfv.eu:5000/tng-cat:v5.0'
sh 'docker push sonatanfv/tng-cat:v5.0'
}
}
stage('Deploying in v5.0 servers') {
steps {
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=sta-sp-v5-0 component=catalogues"'
sh 'ansible-playbook roles/vnv.yml -i environments -e "target=sta-vnv-v5-0 component=catalogues"'
}
}
}
}
}
}
post {
always {
junit(allowEmptyResults: true, testResults: 'spec/reports/*.xml')
}
success {
emailext(from: "jenkins@sonata-nfv.eu",
to: "pstav@unipi.gr",
subject: "SUCCESS: ${env.JOB_NAME}/${env.BUILD_ID} (${env.BRANCH_NAME})",
body: "${env.JOB_URL}")
}
failure {
emailext(from: "jenkins@sonata-nfv.eu",
to: "pstav@unipi.gr",
subject: "FAILURE: ${env.JOB_NAME}/${env.BUILD_ID} (${env.BRANCH_NAME})",
body: "${env.JOB_URL}")
}
}
}