changes in file13
This commit is contained in:
parent
c5872c4ea1
commit
5045f95fc2
141
Jenkinsfile
vendored
141
Jenkinsfile
vendored
|
@ -1,3 +1,8 @@
|
||||||
|
#!/usr/bin/env groovy
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Jenkinsfile
|
||||||
|
*/
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
options {
|
options {
|
||||||
|
@ -38,57 +43,98 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage ('Check_style') {
|
||||||
// stage ('Check_style') {
|
|
||||||
// steps {
|
|
||||||
// sh """
|
|
||||||
// if [ ! -d venv ] ; then
|
|
||||||
|
|
||||||
// virtualenv --python=python2.7 venv
|
|
||||||
// fi
|
|
||||||
// source venv/bin/activate
|
|
||||||
// export PYTHONPATH="$PWD:$PYTHONPATH"
|
|
||||||
|
|
||||||
// pip install pylint
|
|
||||||
|
|
||||||
// cd repo
|
|
||||||
// ### Need this because some strange control sequences when using default TERM=xterm
|
|
||||||
// export TERM="linux"
|
|
||||||
|
|
||||||
// ## || 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
|
|
||||||
// ])
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
stage('Test environment') {
|
|
||||||
steps {
|
steps {
|
||||||
sh '''
|
sh """
|
||||||
echo ${SHELL}
|
#. venv/bin/activate
|
||||||
[ -d venv ] && rm -rf venv
|
[ -d report ] || mkdir report
|
||||||
#virtualenv --python=python2.7 venv
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
virtualenv venv
|
make check || true
|
||||||
#. venv/bin/activate
|
"""
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
sh """
|
||||||
python setup.py install
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
sudo /home/cis/.local/bin/nosetests --with-xunit tests
|
make flake8 | tee report/flake8.log || true
|
||||||
'''
|
"""
|
||||||
|
sh """
|
||||||
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
|
make pylint | tee report/pylint.log || true
|
||||||
|
"""
|
||||||
|
step([$class: 'WarningsPublisher',
|
||||||
|
parserConfigurations: [[
|
||||||
|
parserName: 'Pep8',
|
||||||
|
pattern: 'report/flake8.log'
|
||||||
|
],
|
||||||
|
[
|
||||||
|
parserName: 'pylint',
|
||||||
|
pattern: 'report/pylint.log'
|
||||||
|
]],
|
||||||
|
unstableTotalAll: '0',
|
||||||
|
usePreviousBuildAsReference: true
|
||||||
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage ('Unit Tests') {
|
||||||
stage('Test Run') {
|
|
||||||
steps {
|
steps {
|
||||||
sh '''python src/bitmessagemain.py -t'''
|
sh """
|
||||||
|
#. venv/bin/activate
|
||||||
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
|
make unittest || true
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit keepLongStdio: true, testResults: 'report/nosetests.xml'
|
||||||
|
publishHTML target: [
|
||||||
|
reportDir: 'report/coverage',
|
||||||
|
reportFiles: 'index.html',
|
||||||
|
reportName: 'Coverage Report - Unit Test'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ('System Tests') {
|
||||||
|
steps {
|
||||||
|
sh """
|
||||||
|
#. venv/bin/activate
|
||||||
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
|
// Write file containing test node connection information if needed.
|
||||||
|
// writeFile file: "test/fixtures/nodes.yaml", text: "---\n- node: <some-ip>\n"
|
||||||
|
make systest || true
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit keepLongStdio: true, testResults: 'report/nosetests.xml'
|
||||||
|
publishHTML target: [
|
||||||
|
reportDir: 'report/coverage',
|
||||||
|
reportFiles: 'index.html',
|
||||||
|
reportName: 'Coverage Report - System Test'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage ('Docs') {
|
||||||
|
steps {
|
||||||
|
sh """
|
||||||
|
#. venv/bin/activate
|
||||||
|
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
||||||
|
PYTHONPATH=. pdoc --html --html-dir docs --overwrite env.projectName
|
||||||
|
"""
|
||||||
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
publishHTML target: [
|
||||||
|
reportDir: 'docs/*',
|
||||||
|
reportFiles: 'index.html',
|
||||||
|
reportName: 'Module Documentation'
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,7 +145,6 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
post {
|
post {
|
||||||
failure {
|
failure {
|
||||||
mail body: "${env.JOB_NAME} (${env.BUILD_NUMBER}) ${env.projectName} build error " +
|
mail body: "${env.JOB_NAME} (${env.BUILD_NUMBER}) ${env.projectName} build error " +
|
||||||
|
@ -118,6 +163,4 @@ pipeline {
|
||||||
to: env.emailTo
|
to: env.emailTo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
166
Jenkinsfile2
166
Jenkinsfile2
|
@ -1,166 +0,0 @@
|
||||||
#!/usr/bin/env groovy
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Jenkinsfile
|
|
||||||
*/
|
|
||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
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 {
|
|
||||||
|
|
||||||
/*
|
|
||||||
stage ('Checkout') {
|
|
||||||
steps {
|
|
||||||
checkout scm
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
stage ('Install_Requirements') {
|
|
||||||
steps {
|
|
||||||
sh """
|
|
||||||
echo ${SHELL}
|
|
||||||
[ -d venv ] && rm -rf venv
|
|
||||||
#virtualenv --python=python2.7 venv
|
|
||||||
virtualenv venv
|
|
||||||
#. venv/bin/activate
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
pip install --upgrade pip
|
|
||||||
pip install -r requirements.txt -r dev-requirements.txt
|
|
||||||
make clean
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('Check_style') {
|
|
||||||
steps {
|
|
||||||
sh """
|
|
||||||
#. venv/bin/activate
|
|
||||||
[ -d report ] || mkdir report
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
make check || true
|
|
||||||
"""
|
|
||||||
sh """
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
make flake8 | tee report/flake8.log || true
|
|
||||||
"""
|
|
||||||
sh """
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
make pylint | tee report/pylint.log || true
|
|
||||||
"""
|
|
||||||
step([$class: 'WarningsPublisher',
|
|
||||||
parserConfigurations: [[
|
|
||||||
parserName: 'Pep8',
|
|
||||||
pattern: 'report/flake8.log'
|
|
||||||
],
|
|
||||||
[
|
|
||||||
parserName: 'pylint',
|
|
||||||
pattern: 'report/pylint.log'
|
|
||||||
]],
|
|
||||||
unstableTotalAll: '0',
|
|
||||||
usePreviousBuildAsReference: true
|
|
||||||
])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('Unit Tests') {
|
|
||||||
steps {
|
|
||||||
sh """
|
|
||||||
#. venv/bin/activate
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
make unittest || true
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit keepLongStdio: true, testResults: 'report/nosetests.xml'
|
|
||||||
publishHTML target: [
|
|
||||||
reportDir: 'report/coverage',
|
|
||||||
reportFiles: 'index.html',
|
|
||||||
reportName: 'Coverage Report - Unit Test'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('System Tests') {
|
|
||||||
steps {
|
|
||||||
sh """
|
|
||||||
#. venv/bin/activate
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
// Write file containing test node connection information if needed.
|
|
||||||
// writeFile file: "test/fixtures/nodes.yaml", text: "---\n- node: <some-ip>\n"
|
|
||||||
make systest || true
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit keepLongStdio: true, testResults: 'report/nosetests.xml'
|
|
||||||
publishHTML target: [
|
|
||||||
reportDir: 'report/coverage',
|
|
||||||
reportFiles: 'index.html',
|
|
||||||
reportName: 'Coverage Report - System Test'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('Docs') {
|
|
||||||
steps {
|
|
||||||
sh """
|
|
||||||
#. venv/bin/activate
|
|
||||||
export PATH=${VIRTUAL_ENV}/bin:${PATH}
|
|
||||||
PYTHONPATH=. pdoc --html --html-dir docs --overwrite env.projectName
|
|
||||||
"""
|
|
||||||
}
|
|
||||||
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
publishHTML target: [
|
|
||||||
reportDir: 'docs/*',
|
|
||||||
reportFiles: 'index.html',
|
|
||||||
reportName: 'Module Documentation'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('Cleanup') {
|
|
||||||
steps {
|
|
||||||
sh 'rm -rf venv'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
post {
|
|
||||||
failure {
|
|
||||||
mail body: "${env.JOB_NAME} (${env.BUILD_NUMBER}) ${env.projectName} build error " +
|
|
||||||
"is here: ${env.BUILD_URL}\nStarted by ${env.BUILD_CAUSE}" ,
|
|
||||||
from: env.emailFrom,
|
|
||||||
//replyTo: env.emailFrom,
|
|
||||||
subject: "${env.projectName} ${env.JOB_NAME} (${env.BUILD_NUMBER}) build failed",
|
|
||||||
to: env.emailTo
|
|
||||||
}
|
|
||||||
success {
|
|
||||||
mail body: "${env.JOB_NAME} (${env.BUILD_NUMBER}) ${env.projectName} build successful\n" +
|
|
||||||
"Started by ${env.BUILD_CAUSE}",
|
|
||||||
from: env.emailFrom,
|
|
||||||
//replyTo: env.emailFrom,
|
|
||||||
subject: "${env.projectName} ${env.JOB_NAME} (${env.BUILD_NUMBER}) build successful",
|
|
||||||
to: env.emailTo
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user