mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
24 lines
750 B
Python
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'
|
|
+})
|