blob: 51c163ab78d9eac8553fa63305b8b531829b3fc3 [file] [log] [blame]
// Copyright 2017-present Open Networking Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// voltha-2.x e2e tests
// uses kind-voltha to deploy voltha-2.X
// uses bbsim to simulate OLT/ONUs
pipeline {
/* no label, executor is determined by JJB */
agent {
label "${params.buildNode}"
}
options {
timeout(time: 40, unit: 'MINUTES')
}
environment {
KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
VOLTCONFIG="$HOME/.volt/config-minimal"
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/kind-voltha/bin"
TYPE="minimal"
FANCY=0
WITH_SIM_ADAPTERS="n"
WITH_RADIUS="y"
WITH_BBSIM="y"
DEPLOY_K8S="y"
VOLTHA_LOG_LEVEL="DEBUG"
CONFIG_SADIS="n"
EXTRA_HELM_FLAGS="--set log_agent.enabled=False ${params.extraHelmFlags}"
ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs"
}
stages {
stage('Repo') {
steps {
step([$class: 'WsCleanup'])
checkout(changelog: true,
poll: false,
scm: [$class: 'RepoScm',
manifestRepositoryUrl: "${params.manifestUrl}",
manifestBranch: "${params.manifestBranch}",
currentBranch: true,
destinationDir: 'voltha',
forceSync: true,
resetFirst: true,
quiet: true,
jobs: 4,
showAllChanges: true]
)
}
}
stage('Download kind-voltha') {
steps {
sh """
git clone https://github.com/ciena/kind-voltha.git
"""
}
}
stage('Deploy Voltha') {
steps {
sh """
cd kind-voltha/
JUST_K8S=y ./voltha up
kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log &
./voltha up
"""
}
}
stage('Run E2E Tests') {
steps {
sh '''
set +e
mkdir -p $WORKSPACE/RobotLogs
git clone https://gerrit.opencord.org/voltha-system-tests
cd $WORKSPACE/kind-voltha/scripts
./log-collector.sh > /dev/null &
make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
'''
}
}
}
post {
always {
sh '''
set +e
cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/
kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
kubectl get nodes -o wide
kubectl get pods -o wide
kubectl get pods -n voltha -o wide
sleep 15 # Wait for log-collector to complete
cd $WORKSPACE/kind-voltha/scripts
timeout 10 ./log-combine.sh
cd $WORKSPACE
cp $WORKSPACE/kind-voltha/scripts/logger/combined/*.0001 $WORKSPACE
tar czf container-logs.tgz *.0001
gzip *-combined.log
## shut down voltha
cd $WORKSPACE/kind-voltha/
WAIT_ON_DOWN=y ./voltha down
'''
step([$class: 'RobotPublisher',
disableArchiveOutput: false,
logFileName: 'RobotLogs/log*.html',
otherFiles: '',
outputFileName: 'RobotLogs/output*.xml',
outputPath: '.',
passThreshold: 100,
reportFileName: 'RobotLogs/report*.html',
unstableThreshold: 0]);
archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
}
}
}