From 3993e164a7b940cd17be17aeb747c2eecaeeb3c9 Mon Sep 17 00:00:00 2001 From: Seth Carbon Date: Tue, 4 Jun 2024 12:57:11 -0700 Subject: [PATCH] change checkout method for noctua-models; for #377 --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6a7e131..6919f67 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -249,7 +249,10 @@ pipeline { // Get noctua-models checkout. sh 'pwd' sh 'ls -AlFrt' - sh "git clone -b $TARGET_NOCTUA_MODELS_BRANCH https://github.com/geneontology/noctua-models.git" + // Change check method to address + // https://github.com/geneontology/pipeline/issues/377. + // sh "git clone -b $TARGET_NOCTUA_MODELS_BRANCH https://github.com/geneontology/noctua-models.git" + checkout changelog: false, poll: false, scm: [$class: 'GitSCM', branches: [[name: TARGET_NOCTUA_MODELS_BRANCH]], extensions: [[$class: 'CloneOption', depth: 1, noTags: true, reference: '', shallow: true, timeout: 120]], userRemoteConfigs: [[url: 'https://github.com/geneontology/noctua-models.git', refspec: "+refs/heads/${env.TARGET_NOCTUA_MODELS_BRANCH}:refs/remotes/origin/${env.TARGET_NOCTUA_MODELS_BRANCH}"]]] sh 'NOCTUA_MODELS_PATH=./noctua-models make target/pathway-like_go-cams.tar.gz'