PyBitmessage-2021-04-27/Jenkinsfile

104 lines
2.9 KiB
Plaintext
Raw Normal View History

2019-07-03 15:45:01 +02:00
pipeline {
2019-07-03 15:52:03 +02:00
agent any
2019-07-05 15:44:24 +02:00
triggers {
pollSCM('*/5 * * * *')
2019-07-03 15:45:01 +02:00
}
2019-07-05 16:35:31 +02:00
options {
buildDiscarder(
// Only keep the 10 most recent builds
logRotator(numToKeepStr:'10'))
}
environment {
projectName = 'BitMessage'
emailTo = 'kuldeep.m@cisinlabs.com'
emailFrom = 'kuldeep.m@cisinlabs.com'
VIRTUAL_ENV = "${env.WORKSPACE}/venv"
}
2019-07-05 15:44:24 +02:00
2019-07-03 15:45:01 +02:00
stages {
2019-07-04 16:10:30 +02:00
stage ('Install_Requirements') {
steps {
sh """
2019-07-05 12:32:05 +02:00
echo ${SHELL}
2019-07-04 16:10:30 +02:00
[ -d venv ] && rm -rf venv
#virtualenv --python=python2.7 venv
virtualenv venv
#. venv/bin/activate
export PATH=${VIRTUAL_ENV}/bin:${PATH}
2019-07-04 17:53:25 +02:00
pip install --upgrade pip
2019-07-04 16:10:30 +02:00
pip install -r requirements.txt -r dev-requirements.txt
2019-07-05 10:04:45 +02:00
make clean
2019-07-04 16:10:30 +02:00
"""
}
}
2019-07-05 15:56:52 +02:00
// stage ('Check_style') {
// steps {
// sh """
// if [ ! -d venv ] ; then
2019-07-04 16:10:30 +02:00
2019-07-05 15:56:52 +02:00
// virtualenv --python=python2.7 venv
// fi
// source venv/bin/activate
// export PYTHONPATH="$PWD:$PYTHONPATH"
2019-07-04 16:10:30 +02:00
2019-07-05 15:56:52 +02:00
// pip install pylint
2019-07-04 16:10:30 +02:00
2019-07-05 15:56:52 +02:00
// cd repo
// ### Need this because some strange control sequences when using default TERM=xterm
// export TERM="linux"
2019-07-04 16:10:30 +02:00
2019-07-05 15:56:52 +02:00
// ## || exit 0 because pylint only exits with 0 if everything is correct
// pylint --rcfile=pylint.cfg $(find . -maxdepth 1 -name "*.py" -print) MYMODULE/ > pylint.log || exit 0
// """
// step([$class: 'WarningsPublisher',
// parserConfigurations: [
// [
// parserName: 'pylint',
// pattern: 'report/pylint.log'
// ]],
// unstableTotalAll: '0',
// usePreviousBuildAsReference: true
// ])
// }
// }
2019-07-04 16:10:30 +02:00
2019-07-05 15:44:24 +02:00
stage('Test environment') {
steps {
2019-07-05 15:56:52 +02:00
sh '''
2019-07-05 16:05:55 +02:00
echo ${SHELL}
[ -d venv ] && rm -rf venv
#virtualenv --python=python2.7 venv
virtualenv venv
#. venv/bin/activate
export PATH=${VIRTUAL_ENV}/bin:${PATH}
2019-07-05 16:45:26 +02:00
sudo python setup.py install
sudo /home/cis/.local/bin/nosetests --with-xunit tests
2019-07-05 16:05:55 +02:00
'''
2019-07-04 16:10:30 +02:00
}
}
2019-07-05 15:56:52 +02:00
2019-07-05 15:44:24 +02:00
stage('Test Run') {
2019-07-04 16:10:30 +02:00
steps {
2019-07-05 15:44:24 +02:00
sh '''python /home/cis/Desktop/Python/PyBitmessage/src/bitmessagemain.py -t'''
2019-07-03 15:45:01 +02:00
}
}
}
2019-07-05 15:56:52 +02:00
2019-07-05 16:54:52 +02:00
post {
failure {
echo "Send e-mail, when failed"
}
2019-07-05 16:51:38 +02:00
}
2019-07-05 15:44:24 +02:00
}