From 735404b9e2b2d7f16be8c2118ef37d6b57a20f80 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Tue, 18 Jun 2019 07:57:54 -0700 Subject: [PATCH] Fix Raptor bad repo locations (#3516) --- automation/taskcluster/lib/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index d58382aa9..a70408fca 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -578,7 +578,7 @@ class TaskBuilder(object): "test_packages_url": "{}/{}/artifacts/public/build/target.test_packages.json".format(_DEFAULT_TASK_URL, mozharness_task_id), "installer_url": apk_url, }), - "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-beta", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/releases/mozilla-beta", "GECKO_HEAD_REV": gecko_revision, "MOZ_AUTOMATION": "1", "MOZ_HIDE_RESULTS_TABLE": "1", @@ -598,7 +598,7 @@ class TaskBuilder(object): }, "mounts": [{ "content": { - "url": "https://hg.mozilla.org/mozilla-beta/raw-file/{}/taskcluster/scripts/tester/test-linux.sh".format(gecko_revision), + "url": "https://hg.mozilla.org/releases/mozilla-beta/raw-file/{}/taskcluster/scripts/tester/test-linux.sh".format(gecko_revision), }, "file": "test-linux.sh", }]