pkgsrc-ng/www/firefox/patches/patch-testing_mozharness_configs_update__tests_mozilla-release.py
2016-01-21 23:42:40 +01:00

24 lines
750 B
Python

$NetBSD: patch-testing_mozharness_configs_update__tests_mozilla-release.py,v 1.1 2015/08/11 23:48:18 ryoon Exp $
--- testing/mozharness/configs/update_tests/mozilla-release.py.orig 2015-08-11 19:24:52.000000000 +0000
+++ testing/mozharness/configs/update_tests/mozilla-release.py
@@ -0,0 +1,18 @@
+from mozharness.base.script import platform_name
+
+PLATFORM_CONFIG = {
+ 'linux64': {
+ 'update_verify_config': 'mozRelease-firefox-linux64.cfg'
+ },
+ 'macosx': {
+ 'update_verify_config': 'mozRelease-firefox-mac64.cfg'
+ },
+ 'win32': {
+ 'update_verify_config': 'mozRelease-firefox-win32.cfg'
+ },
+}
+
+config = PLATFORM_CONFIG[platform_name()]
+config.update({
+ 'firefox_ui_branch': 'mozilla-beta'
+})