change in manifest
This commit is contained in:
parent
31e40e7a9a
commit
b372c64a51
60
Jenkinsfile
vendored
60
Jenkinsfile
vendored
|
@ -43,36 +43,36 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage ('Check_style') {
|
// stage ('Check_style') {
|
||||||
steps {
|
// steps {
|
||||||
// sh """
|
// sh """
|
||||||
// #. venv/bin/activate
|
// #. venv/bin/activate
|
||||||
// [ -d report ] || mkdir report
|
// [ -d report ] || mkdir report
|
||||||
// export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
// export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
// make check || true
|
// make check || true
|
||||||
// """
|
// """
|
||||||
sh """
|
// sh """
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
// export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
make flake8 | tee report/flake8.log || true
|
// make flake8 | tee report/flake8.log || true
|
||||||
"""
|
// """
|
||||||
sh """
|
// sh """
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
// export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
make pylint | tee report/pylint.log || true
|
// make pylint | tee report/pylint.log || true
|
||||||
"""
|
// """
|
||||||
step([$class: 'WarningsPublisher',
|
// step([$class: 'WarningsPublisher',
|
||||||
parserConfigurations: [[
|
// parserConfigurations: [[
|
||||||
parserName: 'Pep8',
|
// parserName: 'Pep8',
|
||||||
pattern: 'report/flake8.log'
|
// pattern: 'report/flake8.log'
|
||||||
],
|
// ],
|
||||||
[
|
// [
|
||||||
parserName: 'pylint',
|
// parserName: 'pylint',
|
||||||
pattern: 'report/pylint.log'
|
// pattern: 'report/pylint.log'
|
||||||
]],
|
// ]],
|
||||||
unstableTotalAll: '0',
|
// unstableTotalAll: '0',
|
||||||
usePreviousBuildAsReference: true
|
// usePreviousBuildAsReference: true
|
||||||
])
|
// ])
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
stage ('Unit Tests') {
|
stage ('Unit Tests') {
|
||||||
steps {
|
steps {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user