Reverted move to generate recipe asynchronously
Some checks failed
autoBIGS.cli-bioconda/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2025-02-19 17:00:12 +00:00
parent f987417bd3
commit 1def4bb15f

8
Jenkinsfile vendored
View File

@ -24,16 +24,12 @@ pipeline {
sh 'conda env update -n base --file environment.yml' sh 'conda env update -n base --file environment.yml'
} }
} }
}
}
stage("generate recipe") { stage("generate recipe") {
steps { steps {
sh 'grayskull pypi autoBIGS.cli --maintainers "Harrison Deng"' sh 'grayskull pypi autoBIGS.cli --maintainers "Harrison Deng"'
sh 'python patch_recipe.py' sh 'python patch_recipe.py'
}
}
}
}
stage("update repo") {
steps {
sh 'cp -r autobigs-cli/* auto-updated-bioconda-recipes/recipes/autobigs-cli/.' sh 'cp -r autobigs-cli/* auto-updated-bioconda-recipes/recipes/autobigs-cli/.'
sh 'cat auto-updated-bioconda-recipes/recipes/autobigs-cli/meta.yaml' sh 'cat auto-updated-bioconda-recipes/recipes/autobigs-cli/meta.yaml'
} }