blob: 0b6be3b35ab9cdb99a04fe9bb16f16e6e9ec9c6e [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 Scandolo01d41ce2019-10-28 15:42:47 -070025 stage('Build BBR') {
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070026 steps {
27 sh """
Matteo Scandolo6866b8c2019-10-28 16:15:24 -070028 make build
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070029 """
30 }
31 }
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070032 stage('Build BBSim') {
Matteo Scandolod3415f62019-10-25 15:58:18 -070033 steps {
34 sh """
35 docker pull voltha/bbsim:master
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070036 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=candidate make docker-build
Matteo Scandolod3415f62019-10-25 15:58:18 -070037 """
38 }
39 }
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070040 stage('64 ONUs (16 ONU x 4 PONs)') {
41 steps {
42 timeout(1) {
43 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070044 docker rm -f bbsim || true
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070045 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=candidate DOCKER_RUN_ARGS="-pon 4 -onu 16" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070046 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070047 ./bbr -pon 4 -onu 16 -logfile bbr_16_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070048 docker logs bbsim 2>&1 | tee bbsim_16_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070049 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 -070050 """
51 }
52 }
53 }
54 stage('128 ONUs (32 ONU x 4 PONs)') {
55 steps {
56 timeout(1) {
57 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070058 docker rm -f bbsim || true
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070059 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=candidate DOCKER_RUN_ARGS="-pon 4 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070060 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070061 ./bbr -pon 4 -onu 32 -logfile bbr_32_4.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070062 docker logs bbsim 2>&1 | tee bbsim_32_4.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070063 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 -070064 """
65 }
66 }
67 }
68 stage('256 ONUs (32 ONU x 8 PONs)') {
69 steps {
70 timeout(1) {
71 sh """
Matteo Scandolo13f412d2019-10-25 13:37:27 -070072 docker rm -f bbsim || true
Matteo Scandolo01d41ce2019-10-28 15:42:47 -070073 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=candidate DOCKER_RUN_ARGS="-pon 8 -onu 32" make docker-run
Matteo Scandoloba342de2019-10-22 10:41:33 -070074 sleep 5
Matteo Scandolof5c537e2019-10-28 16:45:57 -070075 ./bbr -pon 8 -onu 32 -logfile bbr_32_8.logs
Matteo Scandoloecbd6a12019-10-21 10:51:03 -070076 docker logs bbsim 2>&1 | tee bbsim_32_8.logs
Matteo Scandolo226dcce2019-11-01 13:20:20 -070077 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 -070078 """
79 }
80 }
81 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -070082 }
83 post {
84 always {
85 archiveArtifacts artifacts: '*.logs'
86 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "teo@opennetworking.org", sendToIndividuals: false])
87 }
Matteo Scandolo0208caa2019-10-29 14:31:22 -070088 success {
89 plot([
90 csvFileName: 'plot-bbr_16_4.csv',
91 csvSeries: [[file: 'bbr_16_4.txt']],
92 group: 'BBSim',
93 title: '64 ONUs (16 ONUs x 4 PONs)',
94 style: 'line'
95 ])
96 plot([
97 csvFileName: 'plot-bbr_32_4.csv',
98 csvSeries: [[file: 'bbr_32_4.txt']],
99 group: 'BBSim',
100 title: '128 ONUs (32 ONUs x 4 PONs)',
101 style: 'line'
102 ])
103 plot([
104 csvFileName: 'plot-bbr_32_8.csv',
105 csvSeries: [[file: 'bbr_32_8.txt']],
106 group: 'BBSim',
107 title: '256 ONUs (32 ONUs x 8 PONs)',
108 style: 'line'
109 ])
110 }
Matteo Scandolo0dfee532019-10-21 16:20:12 -0700111 failure {
112 sh '''
113 docker logs bbsim 2>&1 | tee bbsim_failed.logs
114 docker cp bbsim:/app/dhcp.logs dhcp_failed.logs
115 docker cp bbsim:/var/lib/dhcp/dhcpd.leases dhcpd_leases_failed.logs
116 docker cp bbsim:/app/tcpdump.logs tcpdump_failed.logs
117 docker exec bbsim bbsimctl onu list > onu_list.logs
118 '''
Matteo Scandoloecbd6a12019-10-21 10:51:03 -0700119 }
120 }
121}