From aa089a02a4bfa3ff236b5ef1df89df02e55aad44 Mon Sep 17 00:00:00 2001 From: Michael Ferguson Date: Wed, 2 Oct 2024 11:29:53 -0400 Subject: [PATCH] update old jenkins link and job name (#130) --- brainscore_core/submission/endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brainscore_core/submission/endpoints.py b/brainscore_core/submission/endpoints.py index b2d137bc..cfd3e0a1 100644 --- a/brainscore_core/submission/endpoints.py +++ b/brainscore_core/submission/endpoints.py @@ -285,11 +285,11 @@ def call_jenkins(plugin_info: Union[str, Dict[str, Union[List[str], str]]]): Triggered when changes are merged to the GitHub repository, if those changes affect benchmarks or models. Starts run to score models on benchmarks (`run_scoring`). """ - jenkins_base = "http://braintree.mit.edu:8080" + jenkins_base = "http://www.brain-score-jenkins.com:8080" jenkins_user = os.environ['JENKINS_USER'] jenkins_token = os.environ['JENKINS_TOKEN'] jenkins_trigger = os.environ['JENKINS_TRIGGER'] - jenkins_job = "score_plugins" + jenkins_job = "dev_score_plugins" url = f'{jenkins_base}/job/{jenkins_job}/buildWithParameters?token={jenkins_trigger}'