changes in file

This commit is contained in:
shikhar.s 2019-07-05 20:05:31 +05:30
parent 34e77e980d
commit 048a7239a5
1 changed files with 13 additions and 1 deletions

14
Jenkinsfile vendored
View File

@ -4,6 +4,19 @@ pipeline {
triggers {
pollSCM('*/5 * * * *')
}
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"
}
stages {
@ -66,7 +79,6 @@ pipeline {
virtualenv venv
#. venv/bin/activate
export PATH=${VIRTUAL_ENV}/bin:${PATH}
sudo python setup.py install
sudo var/lib/jenkins/.local/bin/nosetests --with-xunit tests
'''