Added initialization steps for the submodule

This commit is contained in:
Harrison Deng 2025-02-26 15:00:35 +00:00
parent 41441c6aae
commit b4a5ca3a09

4
Jenkinsfile vendored
View File

@ -11,6 +11,10 @@ pipeline {
parallel {
stage("recipes repo") {
steps {
sh 'git config --global --add safe.directory /home/jenkins/agent/workspace/autoBIGS.engine-bioconda_main'
sh 'git config --global --add safe.directory /home/jenkins/agent/workspace/autoBIGS.engine-bioconda_main/auto-updated-bioconda-recipes'
sh 'git submodule init'
sh 'git submodule update'
dir('auto-updated-bioconda-recipes') {
sh 'git checkout update-autobigs-engine'
}