From 8c5566cb12773b407c7395b1c259283b73d1df57 Mon Sep 17 00:00:00 2001 From: Sharon Chen <38014764+shchen-idmod@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:05:27 -0700 Subject: [PATCH] Test jenkinsfile (#14) * Update Jenkinsfile and .gitignore for gha. --------- Co-authored-by: Jonathan Bloedow --- .gitignore | 2 ++ Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 785494c..413ca59 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,5 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +tests/unittests/reports/ +tests/workflow_tests/reports/ diff --git a/Jenkinsfile b/Jenkinsfile index fcbf642..35a638e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,12 +37,12 @@ podTemplate( extensions: [], gitTool: 'Default', submoduleCfg: [], - userRemoteConfigs: [[refspec: '+refs/pull/*:refs/remotes/origin/pr/*', credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', url: 'git@github.com:InstituteforDiseaseModeling/emod-typhoid.git']]]) + userRemoteConfigs: [[refspec: '+refs/pull/*:refs/remotes/origin/pr/*', credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', url: 'git@github.com:InstituteforDiseaseModeling/emodpy-typhoid.git']]]) } else { echo "I execute on the ${env.BRANCH_NAME} branch" git branch: "${env.BRANCH_NAME}", credentialsId: '704061ca-54ca-4aec-b5ce-ddc7e9eab0f2', - url: 'git@github.com:InstituteforDiseaseModeling/emod-typhoid.git' + url: 'git@github.com:InstituteforDiseaseModeling/emodpy-typhoid.git' } } stage('Install') {