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

10
Jenkinsfile vendored
View File

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