* Initiate Jenkins pipeline

1. Add build task
2. Add basic performance test task
3. Add performance measure script
This commit is contained in:
Troy Dai 2017-04-12 15:32:34 -07:00 коммит произвёл GitHub
Родитель f6b3c18535
Коммит a198a63373
6 изменённых файлов: 157 добавлений и 0 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -77,3 +77,6 @@ test_results/
# Code coverage
.coverage
# CI output
artifacts/

29
Jenkinsfile поставляемый Normal file
Просмотреть файл

@ -0,0 +1,29 @@
pipeline {
agent none
triggers { pollSCM('H/3 * * * *') }
stages {
stage ('Build') {
agent any
steps {
sh 'pip install -U virtualenv'
sh 'python -m virtualenv --clear env'
sh './scripts/jenkins_build.sh'
sh './scripts/jenkins_archive.sh'
}
post {
always { deleteDir() }
}
}
stage ('Performance-Test') {
agent { label 'perf-ubuntu-a0' }
steps {
sh 'pip install -U virtualenv'
sh 'python -m virtualenv --clear env'
sh './scripts/jenkins_perf.sh'
}
post {
always { deleteDir() }
}
}
}
}

24
scripts/jenkins_archive.sh Executable file
Просмотреть файл

@ -0,0 +1,24 @@
#!/usr/bin/env bash
# Archive build
set -x
if [ -z $BUILD_NUMBER ]; then
echo "Environment variable BUILD_NUMBER is missing."
exit 1
fi
export
echo "build branch $BRANCH_NAME"
version=$(printf '%.8d' $BUILD_NUMBER)
echo "Version number: $version"
if [ -d /var/build_share ]; then
echo 'Directory /var/build_share is found. The artifacts will be archived there.'
mkdir -p /var/build_share/$BRANCH_NAME/$version
cp -R ./artifacts/ /var/build_share/$BRANCH_NAME/$version
else
echo 'Directory /var/build_share is not found. Exit without taking any actions.'
fi

26
scripts/jenkins_build.sh Executable file
Просмотреть файл

@ -0,0 +1,26 @@
# Build packages in Jenkins server.
# The script expects a virtualenv created under ./env folder as prerequisite
set -x # do not echo command to prevent accidentally expose secrets
. ./env/bin/activate
echo 'Build Azure CLI and its command modules '
if [ -d ./artifacts ]; then
rm -rf ./artifacts
fi
mkdir -p ./artifacts/build
artifacts=$(cd ./artifacts/build && pwd)
working_dir=$(pwd)
for setup_file in $(find src -name 'setup.py'); do
cd $(dirname $setup_file)
echo ""
echo "Components at $(pwd) is being built ..."
python setup.py sdist -d $artifacts bdist_wheel -d $artifacts
cd $working_dir
done
echo 'Build completed.'

27
scripts/jenkins_perf.sh Executable file
Просмотреть файл

@ -0,0 +1,27 @@
#!/usr/bin/env bash
# Run performance in jenkins build
. ./env/bin/activate
echo "Run performance test on $(hostname)"
if [ -z %BUILD_NUMBER ]; then
echo "Environment variable BUILD_NUMBER is missing."
exit 1
fi
version=$(printf '%.8d' $BUILD_NUMBER)
echo "Version number: $version"
echo 'Before install'
which az
pip list
build_folder=/var/build_share/$BRANCH_NAME/$version
echo "Install build from $build_folder"
python -m pip install azure-cli --find-links file://$build_folder/artifacts/build -v
python -m pip freeze
python ./scripts/performance/measure.py

Просмотреть файл

@ -0,0 +1,48 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import sys
from subprocess import check_output, STDOUT
def mean(data):
"""Return the sample arithmetic mean of data."""
n = len(data)
if n < 1:
raise ValueError('len < 1')
return sum(data)/float(n)
def sq_deviation(data):
"""Return sum of square deviations of sequence data."""
c = mean(data)
return sum((x-c)**2 for x in data)
def pstdev(data):
"""Calculates the population standard deviation."""
n = len(data)
if n < 2:
raise ValueError('len < 2')
ss = sq_deviation(data)
return (ss/n) ** 0.5
real = []
user = []
syst = []
loop = 100
for i in range(loop):
lines = check_output(['time -p az'], shell=True, stderr=STDOUT).split('\n')
real_time = float(lines[-4].split()[1])
real.append(float(lines[-4].split()[1]))
user.append(float(lines[-3].split()[1]))
syst.append(float(lines[-2].split()[1]))
sys.stdout.write('Loop {} => {} \n'.format(i, real_time))
sys.stdout.flush()
print('Real: mean => {} \t pstdev => {}'.format(mean(real), pstdev(real)))
print('User: mean => {} \t pstdev => {}'.format(mean(user), pstdev(user)))
print('Syst: mean => {} \t pstdev => {}'.format(mean(syst), pstdev(syst)))