changes in jenkins file
This commit is contained in:
parent
ff36d380a5
commit
6d505f5a74
66
Jenkinsfile
vendored
66
Jenkinsfile
vendored
|
@ -4,10 +4,10 @@ pipeline {
|
||||||
pollSCM('*/5 * * * 1-5')
|
pollSCM('*/5 * * * 1-5')
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
skipDefaultCheckout(true)
|
// skipDefaultCheckout(true)
|
||||||
// Keep the 10 most recent builds
|
// Keep the 10 most recent builds
|
||||||
buildDiscarder(logRotator(numToKeepStr: '10'))
|
buildDiscarder(logRotator(numToKeepStr: '10'))
|
||||||
timestamps()
|
// timestamps()
|
||||||
}
|
}
|
||||||
environment {
|
environment {
|
||||||
projectName = 'BitMessage'
|
projectName = 'BitMessage'
|
||||||
|
@ -19,11 +19,11 @@ pipeline {
|
||||||
stages {
|
stages {
|
||||||
|
|
||||||
|
|
||||||
stage ('Checkout') {
|
// stage ('Checkout') {
|
||||||
steps {
|
// steps {
|
||||||
checkout scm
|
// checkout scm
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
|
|
||||||
stage ('Install_Requirements') {
|
stage ('Install_Requirements') {
|
||||||
|
@ -43,36 +43,36 @@ pipeline {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// stage ('Check_style') {
|
stage ('Check_style') {
|
||||||
// steps {
|
steps {
|
||||||
// sh """
|
sh """
|
||||||
// if [ ! -d venv ] ; then
|
if [ ! -d venv ] ; then
|
||||||
|
|
||||||
// virtualenv --python=python2.7 venv
|
virtualenv --python=python2.7 venv
|
||||||
// fi
|
fi
|
||||||
// source venv/bin/activate
|
source venv/bin/activate
|
||||||
// export PYTHONPATH="$PWD:$PYTHONPATH"
|
export PYTHONPATH="$PWD:$PYTHONPATH"
|
||||||
|
|
||||||
// pip install pylint
|
pip install pylint
|
||||||
|
|
||||||
// cd repo
|
cd repo
|
||||||
// ### Need this because some strange control sequences when using default TERM=xterm
|
### Need this because some strange control sequences when using default TERM=xterm
|
||||||
// export TERM="linux"
|
export TERM="linux"
|
||||||
|
|
||||||
// ## || exit 0 because pylint only exits with 0 if everything is correct
|
## || 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
|
pylint --rcfile=pylint.cfg $(find . -maxdepth 1 -name "*.py" -print) MYMODULE/ > pylint.log || exit 0
|
||||||
// """
|
"""
|
||||||
// step([$class: 'WarningsPublisher',
|
step([$class: 'WarningsPublisher',
|
||||||
// parserConfigurations: [
|
parserConfigurations: [
|
||||||
// [
|
[
|
||||||
// parserName: 'pylint',
|
parserName: 'pylint',
|
||||||
// pattern: 'report/pylint.log'
|
pattern: 'report/pylint.log'
|
||||||
// ]],
|
]],
|
||||||
// unstableTotalAll: '0',
|
unstableTotalAll: '0',
|
||||||
// usePreviousBuildAsReference: true
|
usePreviousBuildAsReference: true
|
||||||
// ])
|
])
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
stage('Test environment') {
|
stage('Test environment') {
|
||||||
steps {
|
steps {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user