Added clean stage to 'Jenkinsfile'.
All checks were successful
ydeng/splitmsa/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-20 15:47:52 -05:00
parent 2c38d7d172
commit 0cc3539280

5
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'