Updated pipeline to take advantage of latest build container image
All checks were successful
ydeng/csvbyname/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-05-03 08:32:04 -05:00
parent 9e59bc097c
commit be4d665301
2 changed files with 4 additions and 4 deletions

7
Jenkinsfile vendored
View File

@ -8,8 +8,7 @@ pipeline {
}
stage("install") {
steps {
sh 'mamba env update --file environment.yml'
sh 'echo "mamba activate csvbyname" >> ~/.bashrc'
sh 'mamba env update --file environment.yml --prefix ./env || mamba env create --force --file environment.yml --prefix ./env'
}
}
stage("build") {
@ -17,7 +16,7 @@ pipeline {
sh "python -m build"
}
}
stage("test") {
stage("test installation") {
steps {
sh "pip install dist/*.whl"
sh "csvbyname -h"
@ -25,7 +24,7 @@ pipeline {
}
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}
stage("publish package") {

View File

@ -6,3 +6,4 @@ dependencies:
- pytest=7.2.2
- twine=4.0.2
- python=3.11
prefix: ./env