From fe40997c72afd814604469160e4fb83fbecbb9d4 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Fri, 14 Jun 2019 16:21:15 +0200 Subject: [PATCH] Fix Raptor bad URLs --- 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 53ab1e844..d58382aa9 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-central", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/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-central/raw-file/{}/taskcluster/scripts/tester/test-linux.sh".format(gecko_revision), + "url": "https://hg.mozilla.org/mozilla-beta/raw-file/{}/taskcluster/scripts/tester/test-linux.sh".format(gecko_revision), }, "file": "test-linux.sh", }]