Updated 'Jenkinsfile' to conform to new build container usage
Some checks failed
ydeng/bmlsa/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2023-05-03 08:13:18 -05:00
parent 1ae59d0a8f
commit 40c8afe68c
2 changed files with 4 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
stages {
stage("install") {
steps {
sh 'mamba env update --file environment.yml || mamba env create --force --file environment.yml'
sh 'mamba env update --file environment.yml --prefix ./env || mamba env create --force --file environment.yml --prefix ./env'
sh 'echo "mamba activate bmlsa" >> ~/.bashrc'
}
}
@ -19,7 +19,7 @@ pipeline {
sh 'rm -rf ./docs/build/*'
sh "python -m build"
sh 'sphinx-apidoc -o docs/source/autodoc/bmlsa src/bmlsa --force'
sh 'make -C docs html'
sh 'sphinx-build -M html ./docs/source ./docs/build'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'docs/build/html', reportFiles: 'index.html', reportName: 'Documentation', reportTitles: ''])
}
}

View File

@ -9,3 +9,4 @@ dependencies:
- python-build=0.10.0
- setuptools=67.6
- sphinx=6.2
prefix: ./env