Compare commits

..

5 Commits

Author SHA1 Message Date
d1b3993011 Changed package version
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2023-04-24 09:35:31 -05:00
ad8fe00479 Fixed 'Jenkinsfile'
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2023-04-24 09:32:25 -05:00
df132814c8 Added installation test step 2023-04-24 09:25:48 -05:00
9b56853e36 Added '__init__.py'
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2023-04-21 13:58:28 -05:00
0cc3539280 Added clean stage to 'Jenkinsfile'.
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good
2023-04-20 15:47:52 -05:00
3 changed files with 7 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -1,6 +1,11 @@
pipeline {
agent any
stages {
stage("clean") {
steps {
sh 'rm -rf ./dist/*'
}
}
stage("install") {
steps {
sh 'mamba env update --file environment.yml'
@ -15,6 +20,7 @@ pipeline {
stage("test") {
steps {
sh "pip install dist/*.whl"
sh "splitmsa -h"
}
}
stage("publish") {

View File

@ -1,6 +1,6 @@
[metadata]
name = splitmsa
version = 0.0.2
version = 0.0.3
[options]
packages = splitmsa

0
splitmsa/__init__.py Normal file
View File