Compare commits

..

2 Commits

Author SHA1 Message Date
be4d665301 Updated pipeline to take advantage of latest build container image
All checks were successful
ydeng/csvbyname/pipeline/head This commit looks good
2023-05-03 08:32:04 -05:00
9e59bc097c Fixed typo in argument help
All checks were successful
ydeng/csvbyname/pipeline/head This commit looks good
2023-04-23 15:28:10 -05:00
3 changed files with 5 additions and 5 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

@ -69,7 +69,7 @@ def main():
"-n",
"--output-basename",
help='Adds a column called "basename" to the resulting CSV where it is just '
"The base name of the path instead of the entire path. This is not guaranteed "
"the base name of the path instead of the entire path. This is not guaranteed "
"to be unique.",
default=False,
required=False,

View File

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