blob: 104b750c02fb550e50c6dc664a5591f0ee7b27e8 [file] [log] [blame]
Matteo Scandoloecbd6a12019-10-21 10:51:03 -07001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 pipeline {
18
19 /* no label, executor is determined by JJB */
20 agent {
Zack Williamsce46e7e2019-10-29 11:27:40 -070021 label "${params.buildNode}"
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070022 }
23
24 stages {
Matteo Scandolo68cd1072019-11-06 10:21:10 -080025 stage('Download BBR') {
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070026 steps {
27 sh """
Matteo Scandolo68cd1072019-11-06 10:21:10 -080028 curl -s https://api.github.com/repos/opencord/bbsim/releases/latest | grep "browser_download_url.*bbr-linux-amd" | cut -d : -f 2,3 | tr -d \\" | wget -qi -
29 mv bbr-linux-amd64 bbr
30 chmod a+x bbr
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070031 """
32 }
33 }
Matteo Scandolo68cd1072019-11-06 10:21:10 -080034 stage('Download BBSim') {
Matteo Scandolod3415f62019-10-25 15:58:18 -070035 steps {
36 sh """
37 docker pull voltha/bbsim:master
38 """
39 }
40 }
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070041 stage('64 ONUs (16 ONU x 4 PONs)') {
42 steps {
43 timeout(1) {
44 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070045 docker rm -f bbsim || true
Matteo Scandolo68cd1072019-11-06 10:21:10 -080046 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-auth -dhcp -pon 4 -onu 16" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070047 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070048 ./bbr -pon 4 -onu 16 -logfile bbr_16_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070049 docker logs bbsim 2>&1 | tee bbsim_16_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070050 res=\$(cat bbr_16_4.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_16_4.txt
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070051 """
52 }
53 }
54 }
55 stage('128 ONUs (32 ONU x 4 PONs)') {
56 steps {
57 timeout(1) {
58 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070059 docker rm -f bbsim || true
Matteo Scandolo68cd1072019-11-06 10:21:10 -080060 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-auth -dhcp -pon 4 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070061 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070062 ./bbr -pon 4 -onu 32 -logfile bbr_32_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070063 docker logs bbsim 2>&1 | tee bbsim_32_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070064 res=\$(cat bbr_32_4.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_32_4.txt
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070065 """
66 }
67 }
68 }
69 stage('256 ONUs (32 ONU x 8 PONs)') {
70 steps {
71 timeout(1) {
72 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070073 docker rm -f bbsim || true
Matteo Scandolo68cd1072019-11-06 10:21:10 -080074 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-auth -dhcp -pon 8 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070075 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070076 ./bbr -pon 8 -onu 32 -logfile bbr_32_8.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070077 docker logs bbsim 2>&1 | tee bbsim_32_8.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070078 res=\$(cat bbr_32_8.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_32_8.txt
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070079 """
80 }
81 }
82 }
Matteo Scandolocae57b52019-11-12 10:52:53 -080083 stage('512 ONUs (64 ONU x 8 PONs)') {
84 steps {
85 timeout(1) {
86 sh """
87 docker rm -f bbsim || true
88 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-auth -dhcp -pon 8 -onu 64" make docker-run
89 sleep 5
90 ./bbr -pon 8 -onu 64 -logfile bbr_64_8.logs
91 docker logs bbsim 2>&1 | tee bbsim_64_8.logs
92 res=\$(cat bbr_64_8.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_64_8.txt
93 """
94 }
95 }
96 }
97 stage('960 ONUs (64 ONU x 15 PONs)') {
98 steps {
99 timeout(1) {
100 sh """
101 docker rm -f bbsim || true
102 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-auth -dhcp -pon 15 -onu 64" make docker-run
103 sleep 5
104 ./bbr -pon 15 -onu 64 -logfile bbr_64_15.logs
105 docker logs bbsim 2>&1 | tee bbsim_64_15.logs
106 res=\$(cat bbr_64_15.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_64_15.txt
107 """
108 }
109 }
110 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700111 }
112 post {
113 always {
114 archiveArtifacts artifacts: '*.logs'
115 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "teo@opennetworking.org", sendToIndividuals: false])
116 }
Matteo Scandolo0208caa2019-10-29 14:31:22 -0700117 success {
118 plot([
119 csvFileName: 'plot-bbr_16_4.csv',
120 csvSeries: [[file: 'bbr_16_4.txt']],
121 group: 'BBSim',
122 title: '64 ONUs (16 ONUs x 4 PONs)',
123 style: 'line'
124 ])
125 plot([
126 csvFileName: 'plot-bbr_32_4.csv',
127 csvSeries: [[file: 'bbr_32_4.txt']],
128 group: 'BBSim',
129 title: '128 ONUs (32 ONUs x 4 PONs)',
130 style: 'line'
131 ])
132 plot([
133 csvFileName: 'plot-bbr_32_8.csv',
134 csvSeries: [[file: 'bbr_32_8.txt']],
135 group: 'BBSim',
136 title: '256 ONUs (32 ONUs x 8 PONs)',
137 style: 'line'
138 ])
Matteo Scandolocae57b52019-11-12 10:52:53 -0800139 plot([
140 csvFileName: 'plot-bbr_64_8.csv',
141 csvSeries: [[file: 'bbr_64_8.txt']],
142 group: 'BBSim',
143 title: '512 ONUs (64 ONUs x 8 PONs)',
144 style: 'line'
145 ])
146 plot([
147 csvFileName: 'plot-bbr_64_15.csv',
148 csvSeries: [[file: 'bbr_64_15.txt']],
149 group: 'BBSim',
150 title: '960 ONUs (64 ONUs x 15 PONs)',
151 style: 'line'
152 ])
Matteo Scandolo0208caa2019-10-29 14:31:22 -0700153 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700154 failure {
155 sh '''
156 docker logs bbsim 2>&1 | tee bbsim_failed.logs
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700157 docker cp bbsim:/var/lib/dhcp/dhcpd.leases dhcpd_leases_failed.logs
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700158 docker exec bbsim bbsimctl onu list > onu_list.logs
159 '''
Matteo Scandoloecbd6a12019-10-21 10:51:03 -0700160 }
161 }
162}