From 6187b6d8477ecff8bc21d55a2472ed05df1788dd Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 17 Feb 2025 15:56:47 +0000 Subject: [PATCH] Removed extra stages for debugging pipeline --- Jenkinsfile | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cc7f818..ea9e9f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,36 +26,5 @@ pipeline { } } } - stage("update recipes") { - parallel { - stage("autoBIGS.cli") { - steps { - sh 'grayskull pypi autobigs.cli --maintainers "Harrison Deng"' - sh 'python scripts/adapt_names.py autobigs.cli' - } - } - stage("autoBIGS.engine") { - steps { - sh 'grayskull pypi autobigs.cli --maintainers "Harrison Deng"' - sh 'python scripts/adapt_names.py autobigs.engine' - } - } - } - stage("overwrite") { - steps { - dir('bioconda-recipes') { - sh 'git checkout -b update-autobigs-engine' - sh 'cp -r ../autobigs-engine/* recipes/autobigs-engine/.' - sh 'git commit -a -m "Automatically updated autobigs-engine bioconda recipe to $(python ../scripts/package_latest_version.py autoBIGS.engine)."' - sh 'git push origin update-autobigs-engine' - - sh 'git checkout -b update-autobigs-cli' - sh 'cp -r ../autobigs-cli/* recipes/autobigs-cli/.' - sh 'git commit -a -m "Automatically updated autobigs-cli bioconda recipe to $(python ../scripts/package_latest_version.py autoBIGS.engine)."' - sh 'git push origin update-autobigs-cli' - } - } - } - } } } \ No newline at end of file