From 6830034777b270d7cbeecb114716ab1ab64760b6 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Tue, 18 Feb 2025 17:52:57 +0000 Subject: [PATCH] Updated pipeline to reflect new recipe repo fork name --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b36efb8..03847ed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,9 @@ pipeline { } stage("build") { steps { - sh 'conda build bioconda-utils/recipes/autobigs-cli' + dir('auto-updated-bioconda-recipes') { + sh 'conda build recipes/autobigs-cli' + } } } stage("commit") {