blob: 0387f5cecab5026349c8872693175416a268b944 [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 {
Matteo Scandolo3129e3a2020-09-17 08:58:49 -070043 sh """
44 docker rm -f bbsim || true
45 """
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070046 timeout(1) {
47 sh """
Matteo Scandolo76b77742020-09-16 11:14:04 -070048 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-logLevel warn -enableperf -pon 4 -onu 16" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070049 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070050 ./bbr -pon 4 -onu 16 -logfile bbr_16_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070051 docker logs bbsim 2>&1 | tee bbsim_16_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070052 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 -070053 """
54 }
55 }
56 }
57 stage('128 ONUs (32 ONU x 4 PONs)') {
58 steps {
Matteo Scandolo3129e3a2020-09-17 08:58:49 -070059 sh """
60 docker rm -f bbsim || true
61 """
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070062 timeout(1) {
63 sh """
Matteo Scandolo76b77742020-09-16 11:14:04 -070064 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-logLevel warn -enableperf -pon 4 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070065 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070066 ./bbr -pon 4 -onu 32 -logfile bbr_32_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070067 docker logs bbsim 2>&1 | tee bbsim_32_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070068 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 -070069 """
70 }
71 }
72 }
73 stage('256 ONUs (32 ONU x 8 PONs)') {
74 steps {
Matteo Scandolo3129e3a2020-09-17 08:58:49 -070075 sh """
76 docker rm -f bbsim || true
77 """
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070078 timeout(1) {
79 sh """
Matteo Scandolo76b77742020-09-16 11:14:04 -070080 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-logLevel warn -enableperf -pon 8 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070081 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070082 ./bbr -pon 8 -onu 32 -logfile bbr_32_8.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070083 docker logs bbsim 2>&1 | tee bbsim_32_8.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070084 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 -070085 """
86 }
87 }
88 }
Matteo Scandolocae57b52019-11-12 10:52:53 -080089 stage('512 ONUs (64 ONU x 8 PONs)') {
90 steps {
Matteo Scandolo3129e3a2020-09-17 08:58:49 -070091 sh """
92 docker rm -f bbsim || true
93 """
Matteo Scandolocae57b52019-11-12 10:52:53 -080094 timeout(1) {
95 sh """
Matteo Scandolo76b77742020-09-16 11:14:04 -070096 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-logLevel warn -enableperf -pon 8 -onu 64" make docker-run
Matteo Scandolocae57b52019-11-12 10:52:53 -080097 sleep 5
98 ./bbr -pon 8 -onu 64 -logfile bbr_64_8.logs
99 docker logs bbsim 2>&1 | tee bbsim_64_8.logs
100 res=\$(cat bbr_64_8.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_64_8.txt
101 """
102 }
103 }
104 }
105 stage('960 ONUs (64 ONU x 15 PONs)') {
106 steps {
Matteo Scandolo3129e3a2020-09-17 08:58:49 -0700107 sh """
108 docker rm -f bbsim || true
109 """
Matteo Scandolocae57b52019-11-12 10:52:53 -0800110 timeout(1) {
111 sh """
Matteo Scandolo76b77742020-09-16 11:14:04 -0700112 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=master DOCKER_RUN_ARGS="-logLevel warn -enableperf -pon 15 -onu 64" make docker-run
Matteo Scandolocae57b52019-11-12 10:52:53 -0800113 sleep 5
114 ./bbr -pon 15 -onu 64 -logfile bbr_64_15.logs
115 docker logs bbsim 2>&1 | tee bbsim_64_15.logs
116 res=\$(cat bbr_64_15.logs | grep Duration | awk '{print \$5}' ); printf "Runtime\n\${res:9:10}" > bbr_64_15.txt
117 """
118 }
119 }
120 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700121 }
122 post {
123 always {
124 archiveArtifacts artifacts: '*.logs'
125 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "teo@opennetworking.org", sendToIndividuals: false])
126 }
Matteo Scandolo0208caa2019-10-29 14:31:22 -0700127 success {
128 plot([
129 csvFileName: 'plot-bbr_16_4.csv',
130 csvSeries: [[file: 'bbr_16_4.txt']],
131 group: 'BBSim',
132 title: '64 ONUs (16 ONUs x 4 PONs)',
133 style: 'line'
134 ])
135 plot([
136 csvFileName: 'plot-bbr_32_4.csv',
137 csvSeries: [[file: 'bbr_32_4.txt']],
138 group: 'BBSim',
139 title: '128 ONUs (32 ONUs x 4 PONs)',
140 style: 'line'
141 ])
142 plot([
143 csvFileName: 'plot-bbr_32_8.csv',
144 csvSeries: [[file: 'bbr_32_8.txt']],
145 group: 'BBSim',
146 title: '256 ONUs (32 ONUs x 8 PONs)',
147 style: 'line'
148 ])
Matteo Scandolocae57b52019-11-12 10:52:53 -0800149 plot([
150 csvFileName: 'plot-bbr_64_8.csv',
151 csvSeries: [[file: 'bbr_64_8.txt']],
152 group: 'BBSim',
153 title: '512 ONUs (64 ONUs x 8 PONs)',
154 style: 'line'
155 ])
156 plot([
157 csvFileName: 'plot-bbr_64_15.csv',
158 csvSeries: [[file: 'bbr_64_15.txt']],
159 group: 'BBSim',
160 title: '960 ONUs (64 ONUs x 15 PONs)',
161 style: 'line'
162 ])
Matteo Scandolo0208caa2019-10-29 14:31:22 -0700163 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700164 failure {
165 sh '''
166 docker logs bbsim 2>&1 | tee bbsim_failed.logs
Matteo Scandolo76b77742020-09-16 11:14:04 -0700167 docker cp bbsim:/var/lib/dhcp/dhcpd.leases dhcpd_leases_failed.logs || true
168 docker exec bbsim bbsimctl onu list > onu_list.logs || true
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700169 '''
Matteo Scandoloecbd6a12019-10-21 10:51:03 -0700170 }
171 }
172}