stash added
esbo_ds/ESBO-ETC/pipeline/head This commit looks good Details

This commit is contained in:
Lukas Klass 2020-07-21 13:56:58 +02:00
parent d3a0fa4745
commit 08f2c73ca3
1 changed files with 5 additions and 8 deletions

13
Jenkinsfile vendored
View File

@ -29,16 +29,13 @@ pipeline {
sh 'rm -rf ${BUILD_DIR}'
sh 'rm -f ${SPHINX_DIR}/sphinx-build.log'
sh 'ls'
sh 'pyenv/bin/sphinx-build -b html docs/source docs/build/html'
/*
sh '''
${WORKSPACE}/pyenv/bin/sphinx-build \
-q -w ${SPHINX_DIR}/sphinx-build.log \
-b html \
-d ${SPHINX_DIR}/${BUILD_DIR}/doctrees ${SPHINX_DIR}/${SOURCE_DIR} ${SPHINX_DIR}/${BUILD_DIR}
pyenv/bin/sphinx-build \
-w ${SPHINX_DIR}/sphinx-build.log \
-b html ${SPHINX_DIR}/${SOURCE_DIR} ${SPHINX_DIR}/${BUILD_DIR}
'''
*/
archiveArtifacts 'docs/build/html/**/*.*'
stash includes: 'docs/build/html/**/*.*', name: 'html'
// archiveArtifacts 'docs/build/html/**/*.*', onlyIfSuccessful: true
}
post {
failure {