mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
459
testing/mozharness/configs/android/androidarm.py
Normal file
459
testing/mozharness/configs/android/androidarm.py
Normal file
|
|
@ -0,0 +1,459 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
"host_utils_url": "http://talos-remote.pvt.build.mozilla.org/tegra/tegra-host-utils.Linux.1109310.2.zip",
|
||||
"robocop_package_name": "org.mozilla.roboexample.test",
|
||||
"device_ip": "127.0.0.1",
|
||||
"default_sut_port1": "20701",
|
||||
"default_sut_port2": "20700", # does not prompt for commands
|
||||
"tooltool_manifest_path": "testing/config/tooltool-manifests/androidarm/releng.manifest",
|
||||
"tooltool_cache": "/builds/tooltool_cache",
|
||||
"emulator_manifest": """
|
||||
[
|
||||
{
|
||||
"size": 193383673,
|
||||
"digest": "6609e8b95db59c6a3ad60fc3dcfc358b2c8ec8b4dda4c2780eb439e1c5dcc5d550f2e47ce56ba14309363070078d09b5287e372f6e95686110ff8a2ef1838221",
|
||||
"algorithm": "sha512",
|
||||
"filename": "android-sdk18_0.r18moz1.orig.tar.gz",
|
||||
"unpack": "True"
|
||||
}
|
||||
] """,
|
||||
"emulator_process_name": "emulator64-arm",
|
||||
"emulator_extra_args": "-debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket -qemu -m 1024 -cpu cortex-a9",
|
||||
"device_manager": "sut",
|
||||
"exes": {
|
||||
'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
"env": {
|
||||
"DISPLAY": ":0.0",
|
||||
"PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk18/tools:%(abs_work_dir)s/android-sdk18/platform-tools",
|
||||
"MINIDUMP_SAVEPATH": "%(abs_work_dir)s/../minidumps"
|
||||
},
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'setup-avds',
|
||||
'start-emulator',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'verify-emulator',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"emulator": {
|
||||
"name": "test-1",
|
||||
"device_id": "emulator-5554",
|
||||
"http_port": "8854", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4454", # starting ssl port to use for the server
|
||||
"emulator_port": 5554,
|
||||
"sut_port1": 20701,
|
||||
"sut_port2": 20700
|
||||
},
|
||||
"suite_definitions": {
|
||||
"mochitest": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=sut",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"--screenshot-on-fail",
|
||||
],
|
||||
},
|
||||
"mochitest-gl": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=sut",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--total-chunks=4",
|
||||
"--subsuite=webgl",
|
||||
],
|
||||
},
|
||||
"mochitest-media": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=sut",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--total-chunks=2",
|
||||
"--subsuite=media",
|
||||
],
|
||||
},
|
||||
"robocop": {
|
||||
"run_filename": "runrobocop.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=sut",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--total-chunks=4",
|
||||
"--robocop-apk=../../robocop.apk",
|
||||
"--robocop-ini=robocop.ini",
|
||||
],
|
||||
},
|
||||
"reftest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path",
|
||||
"%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=16",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"--suite=reftest",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
],
|
||||
"tests": ["tests/layout/reftests/reftest.list"],
|
||||
},
|
||||
"crashtest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path",
|
||||
"%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=2",
|
||||
"--suite=crashtest",
|
||||
],
|
||||
"tests": ["tests/testing/crashtest/crashtests.list"],
|
||||
},
|
||||
"jsreftest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path",
|
||||
"%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=6",
|
||||
"--extra-profile-file=jsreftest/tests/user.js",
|
||||
"--suite=jstestbrowser",
|
||||
],
|
||||
"tests": ["../jsreftest/tests/jstests.list"],
|
||||
},
|
||||
"xpcshell": {
|
||||
"run_filename": "remotexpcshelltests.py",
|
||||
"testsdir": "xpcshell",
|
||||
"options": [
|
||||
"--dm_trans=sut",
|
||||
"--deviceIP=%(device_ip)s",
|
||||
"--devicePort=%(device_port)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--testing-modules-dir=%(modules_dir)s",
|
||||
"--apk=%(installer_path)s",
|
||||
"--no-logfiles",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--manifest=tests/xpcshell.ini",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--total-chunks=3",
|
||||
],
|
||||
},
|
||||
}, # end suite_definitions
|
||||
"test_suite_definitions": {
|
||||
"jsreftest-1": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=1"],
|
||||
},
|
||||
"jsreftest-2": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=2"],
|
||||
},
|
||||
"jsreftest-3": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=3"],
|
||||
},
|
||||
"jsreftest-4": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=4"],
|
||||
},
|
||||
"jsreftest-5": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=5"],
|
||||
},
|
||||
"jsreftest-6": {
|
||||
"category": "jsreftest",
|
||||
"extra_args": ["--this-chunk=6"],
|
||||
},
|
||||
"mochitest-1": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=1"],
|
||||
},
|
||||
"mochitest-2": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=2"],
|
||||
},
|
||||
"mochitest-3": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=3"],
|
||||
},
|
||||
"mochitest-4": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=4"],
|
||||
},
|
||||
"mochitest-5": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=5"],
|
||||
},
|
||||
"mochitest-6": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=6"],
|
||||
},
|
||||
"mochitest-7": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=7"],
|
||||
},
|
||||
"mochitest-8": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=8"],
|
||||
},
|
||||
"mochitest-9": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=9"],
|
||||
},
|
||||
"mochitest-10": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=10"],
|
||||
},
|
||||
"mochitest-11": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=11"],
|
||||
},
|
||||
"mochitest-12": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=12"],
|
||||
},
|
||||
"mochitest-13": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=13"],
|
||||
},
|
||||
"mochitest-14": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=14"],
|
||||
},
|
||||
"mochitest-15": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=15"],
|
||||
},
|
||||
"mochitest-16": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=16"],
|
||||
},
|
||||
"mochitest-chrome": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--flavor=chrome"],
|
||||
},
|
||||
"mochitest-media-1": {
|
||||
"category": "mochitest-media",
|
||||
"extra_args": ["--this-chunk=1"],
|
||||
},
|
||||
"mochitest-media-2": {
|
||||
"category": "mochitest-media",
|
||||
"extra_args": ["--this-chunk=2"],
|
||||
},
|
||||
"mochitest-gl-1": {
|
||||
"category": "mochitest-gl",
|
||||
"extra_args": ["--this-chunk=1"],
|
||||
},
|
||||
"mochitest-gl-2": {
|
||||
"category": "mochitest-gl",
|
||||
"extra_args": ["--this-chunk=2"],
|
||||
},
|
||||
"mochitest-gl-3": {
|
||||
"category": "mochitest-gl",
|
||||
"extra_args": ["--this-chunk=3"],
|
||||
},
|
||||
"mochitest-gl-4": {
|
||||
"category": "mochitest-gl",
|
||||
"extra_args": ["--this-chunk=4"],
|
||||
},
|
||||
"reftest-1": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=1"],
|
||||
},
|
||||
"reftest-2": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=2"],
|
||||
},
|
||||
"reftest-3": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=3"],
|
||||
},
|
||||
"reftest-4": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=4"],
|
||||
},
|
||||
"reftest-5": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=5"],
|
||||
},
|
||||
"reftest-6": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=6"],
|
||||
},
|
||||
"reftest-7": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=7"],
|
||||
},
|
||||
"reftest-8": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=8"],
|
||||
},
|
||||
"reftest-9": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=9"],
|
||||
},
|
||||
"reftest-10": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=10"],
|
||||
},
|
||||
"reftest-11": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=11"],
|
||||
},
|
||||
"reftest-12": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=12"],
|
||||
},
|
||||
"reftest-13": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=13"],
|
||||
},
|
||||
"reftest-14": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=14"],
|
||||
},
|
||||
"reftest-15": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=15"],
|
||||
},
|
||||
"reftest-16": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--total-chunks=16", "--this-chunk=16"],
|
||||
},
|
||||
"crashtest-1": {
|
||||
"category": "crashtest",
|
||||
"extra_args": ["--this-chunk=1"],
|
||||
},
|
||||
"crashtest-2": {
|
||||
"category": "crashtest",
|
||||
"extra_args": ["--this-chunk=2"],
|
||||
},
|
||||
"xpcshell-1": {
|
||||
"category": "xpcshell",
|
||||
"extra_args": ["--total-chunks=3", "--this-chunk=1"],
|
||||
},
|
||||
"xpcshell-2": {
|
||||
"category": "xpcshell",
|
||||
"extra_args": ["--total-chunks=3", "--this-chunk=2"],
|
||||
},
|
||||
"xpcshell-3": {
|
||||
"category": "xpcshell",
|
||||
"extra_args": ["--total-chunks=3", "--this-chunk=3"],
|
||||
},
|
||||
"robocop-1": {
|
||||
"category": "robocop",
|
||||
"extra_args": ["--this-chunk=1"],
|
||||
},
|
||||
"robocop-2": {
|
||||
"category": "robocop",
|
||||
"extra_args": ["--this-chunk=2"],
|
||||
},
|
||||
"robocop-3": {
|
||||
"category": "robocop",
|
||||
"extra_args": ["--this-chunk=3"],
|
||||
},
|
||||
"robocop-4": {
|
||||
"category": "robocop",
|
||||
"extra_args": ["--this-chunk=4"],
|
||||
},
|
||||
}, # end of "test_definitions"
|
||||
"download_minidump_stackwalk": True,
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
}
|
||||
10
testing/mozharness/configs/android/androidarm_4_3-tc.py
Normal file
10
testing/mozharness/configs/android/androidarm_4_3-tc.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
config = {
|
||||
# Additional Android 4.3 settings required when running in taskcluster.
|
||||
"avds_dir": "/home/worker/workspace/build/.android",
|
||||
"tooltool_cache": "/home/worker/tooltool_cache",
|
||||
"download_tooltool": True,
|
||||
"tooltool_servers": ['http://relengapi/tooltool/'],
|
||||
"exes": {
|
||||
'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
|
||||
}
|
||||
}
|
||||
383
testing/mozharness/configs/android/androidarm_4_3.py
Normal file
383
testing/mozharness/configs/android/androidarm_4_3.py
Normal file
|
|
@ -0,0 +1,383 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
"hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
|
||||
"robocop_package_name": "org.mozilla.roboexample.test",
|
||||
"marionette_address": "localhost:2828",
|
||||
"marionette_test_manifest": "unit-tests.ini",
|
||||
"tooltool_manifest_path": "testing/config/tooltool-manifests/androidarm_4_3/releng.manifest",
|
||||
"tooltool_cache": "/builds/tooltool_cache",
|
||||
"avds_dir": "/home/cltbld/.android",
|
||||
"emulator_manifest": """
|
||||
[
|
||||
{
|
||||
"size": 140097024,
|
||||
"digest": "51781032335c09103e8509b1a558bf22a7119392cf1ea301c49c01bdf21ff0ceb37d260bc1c322cd9b903252429fb01830fc27e4632be30cd345c95bf4b1a39b",
|
||||
"algorithm": "sha512",
|
||||
"filename": "android-sdk_r24.0.2-linux.tgz",
|
||||
"unpack": "True"
|
||||
}
|
||||
] """,
|
||||
"tools_manifest": """
|
||||
[
|
||||
{
|
||||
"size": 193383673,
|
||||
"digest": "6609e8b95db59c6a3ad60fc3dcfc358b2c8ec8b4dda4c2780eb439e1c5dcc5d550f2e47ce56ba14309363070078d09b5287e372f6e95686110ff8a2ef1838221",
|
||||
"algorithm": "sha512",
|
||||
"filename": "android-sdk18_0.r18moz1.orig.tar.gz",
|
||||
"unpack": "True"
|
||||
}
|
||||
] """,
|
||||
"emulator_process_name": "emulator64-arm",
|
||||
"emulator_extra_args": "-show-kernel -debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket",
|
||||
"device_manager": "adb",
|
||||
"exes": {
|
||||
'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
"env": {
|
||||
"DISPLAY": ":0.0",
|
||||
"PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk-linux/tools:%(abs_work_dir)s/android-sdk18/platform-tools",
|
||||
"MINIDUMP_SAVEPATH": "%(abs_work_dir)s/../minidumps"
|
||||
},
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'setup-avds',
|
||||
'start-emulator',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'verify-emulator',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"emulator": {
|
||||
"name": "test-1",
|
||||
"device_id": "emulator-5554",
|
||||
"http_port": "8854", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4454", # starting ssl port to use for the server
|
||||
"emulator_port": 5554,
|
||||
},
|
||||
"suite_definitions": {
|
||||
"mochitest": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"--screenshot-on-fail",
|
||||
"--total-chunks=20",
|
||||
],
|
||||
},
|
||||
"mochitest-gl": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--total-chunks=10",
|
||||
"--subsuite=webgl",
|
||||
],
|
||||
},
|
||||
"mochitest-chrome": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"--screenshot-on-fail",
|
||||
"--flavor=chrome",
|
||||
],
|
||||
},
|
||||
"mochitest-plain-gpu": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--subsuite=gpu",
|
||||
],
|
||||
},
|
||||
"mochitest-plain-clipboard": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--subsuite=clipboard",
|
||||
],
|
||||
},
|
||||
"mochitest-media": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
"--chunk-by-runtime",
|
||||
"--total-chunks=2",
|
||||
"--subsuite=media",
|
||||
],
|
||||
},
|
||||
"robocop": {
|
||||
"run_filename": "runrobocop.py",
|
||||
"testsdir": "mochitest",
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--total-chunks=4",
|
||||
"--robocop-apk=../../robocop.apk",
|
||||
"--robocop-ini=robocop.ini",
|
||||
],
|
||||
},
|
||||
"reftest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path", "%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=16",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"--suite=reftest",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
],
|
||||
"tests": ["tests/layout/reftests/reftest.list",],
|
||||
},
|
||||
"reftest-debug": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path", "%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=48",
|
||||
"--extra-profile-file=fonts",
|
||||
"--extra-profile-file=hyphenation",
|
||||
"tests/layout/reftests/reftest.list",
|
||||
],
|
||||
},
|
||||
"crashtest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path",
|
||||
"%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=4",
|
||||
"--suite=crashtest",
|
||||
],
|
||||
"tests": ["tests/testing/crashtest/crashtests.list",],
|
||||
},
|
||||
"crashtest-debug": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path",
|
||||
"%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=10",
|
||||
"tests/testing/crashtest/crashtests.list",
|
||||
],
|
||||
},
|
||||
"jsreftest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s", "--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s", "--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s", "--httpd-path", "%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--total-chunks=6",
|
||||
"--extra-profile-file=jsreftest/tests/user.js",
|
||||
"--suite=jstestbrowser",
|
||||
],
|
||||
"tests": ["../jsreftest/tests/jstests.list",],
|
||||
},
|
||||
"jsreftest-debug": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"testsdir": "reftest",
|
||||
"options": [
|
||||
"--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--dm_trans=adb",
|
||||
"--remote-webserver=%(remote_webserver)s", "--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s", "--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s", "--httpd-path", "%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"../jsreftest/tests/jstests.list",
|
||||
"--total-chunks=20",
|
||||
"--extra-profile-file=jsreftest/tests/user.js",
|
||||
],
|
||||
},
|
||||
"xpcshell": {
|
||||
"run_filename": "remotexpcshelltests.py",
|
||||
"testsdir": "xpcshell",
|
||||
"install": False,
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--testing-modules-dir=%(modules_dir)s",
|
||||
"--apk=%(installer_path)s",
|
||||
"--no-logfiles",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--manifest=tests/xpcshell.ini",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--test-plugin-path=none",
|
||||
"--total-chunks=3",
|
||||
],
|
||||
},
|
||||
"cppunittest": {
|
||||
"run_filename": "remotecppunittests.py",
|
||||
"testsdir": "cppunittest",
|
||||
"install": False,
|
||||
"options": [
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--dm_trans=adb",
|
||||
"--localBinDir=../bin",
|
||||
"--apk=%(installer_path)s",
|
||||
".",
|
||||
],
|
||||
},
|
||||
"marionette": {
|
||||
"run_filename": os.path.join("harness", "marionette_harness", "runtests.py"),
|
||||
"testsdir": "marionette",
|
||||
"options": [
|
||||
"--emulator",
|
||||
"--app=fennec",
|
||||
"--package=%(app)s",
|
||||
"--address=%(address)s",
|
||||
"%(test_manifest)s",
|
||||
"--disable-e10s",
|
||||
"--gecko-log=%(gecko_log)s",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--startup-timeout=300",
|
||||
],
|
||||
},
|
||||
|
||||
}, # end suite_definitions
|
||||
"download_minidump_stackwalk": True,
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
}
|
||||
9
testing/mozharness/configs/android/androidarm_dev.py
Normal file
9
testing/mozharness/configs/android/androidarm_dev.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# This config contains dev values that will replace
|
||||
# the values specified in the production config
|
||||
# if specified like this (order matters):
|
||||
# --cfg android/androidarm.py
|
||||
# --cfg android/androidarm_dev.py
|
||||
import os
|
||||
config = {
|
||||
"tooltool_cache_path": os.path.join(os.getenv("HOME"), "cache"),
|
||||
}
|
||||
73
testing/mozharness/configs/android/androidx86-tc.py
Normal file
73
testing/mozharness/configs/android/androidx86-tc.py
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
"hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
|
||||
"tooltool_manifest_path": "testing/config/tooltool-manifests/androidx86/releng.manifest",
|
||||
"tooltool_cache": "/home/worker/tooltool_cache",
|
||||
"download_tooltool": True,
|
||||
"tooltool_servers": ['http://relengapi/tooltool/'],
|
||||
"avds_dir": "/home/worker/workspace/build/.android",
|
||||
"emulator_manifest": """
|
||||
[
|
||||
{
|
||||
"size": 193383673,
|
||||
"digest": "6609e8b95db59c6a3ad60fc3dcfc358b2c8ec8b4dda4c2780eb439e1c5dcc5d550f2e47ce56ba14309363070078d09b5287e372f6e95686110ff8a2ef1838221",
|
||||
"algorithm": "sha512",
|
||||
"filename": "android-sdk18_0.r18moz1.orig.tar.gz",
|
||||
"unpack": "True"
|
||||
}
|
||||
] """,
|
||||
"emulator_process_name": "emulator64-x86",
|
||||
"emulator_extra_args": "-show-kernel -debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket -qemu -m 1024",
|
||||
"device_manager": "adb",
|
||||
"exes": {
|
||||
'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
|
||||
},
|
||||
"env": {
|
||||
"DISPLAY": ":0.0",
|
||||
"PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk18/tools:%(abs_work_dir)s/android-sdk18/platform-tools",
|
||||
"MINIDUMP_SAVEPATH": "%(abs_work_dir)s/../minidumps"
|
||||
},
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'setup-avds',
|
||||
'start-emulator',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'verify-emulator',
|
||||
'run-tests',
|
||||
],
|
||||
"emulator": {
|
||||
"name": "test-1",
|
||||
"device_id": "emulator-5554",
|
||||
"http_port": "8854", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4454", # starting ssl port to use for the server
|
||||
"emulator_port": 5554,
|
||||
},
|
||||
"suite_definitions": {
|
||||
"xpcshell": {
|
||||
"run_filename": "remotexpcshelltests.py",
|
||||
"testsdir": "xpcshell",
|
||||
"install": False,
|
||||
"options": [
|
||||
"--dm_trans=adb",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--testing-modules-dir=%(modules_dir)s",
|
||||
"--apk=%(installer_path)s",
|
||||
"--no-logfiles",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--manifest=tests/xpcshell.ini",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--test-plugin-path=none",
|
||||
],
|
||||
},
|
||||
}, # end suite_definitions
|
||||
"download_minidump_stackwalk": True,
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
}
|
||||
182
testing/mozharness/configs/android/androidx86.py
Normal file
182
testing/mozharness/configs/android/androidx86.py
Normal file
|
|
@ -0,0 +1,182 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
"hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
|
||||
"robocop_package_name": "org.mozilla.roboexample.test",
|
||||
"device_ip": "127.0.0.1",
|
||||
"tooltool_manifest_path": "testing/config/tooltool-manifests/androidx86/releng.manifest",
|
||||
"tooltool_cache": "/builds/tooltool_cache",
|
||||
"avds_dir": "/home/cltbld/.android",
|
||||
"emulator_manifest": """
|
||||
[
|
||||
{
|
||||
"size": 193383673,
|
||||
"digest": "6609e8b95db59c6a3ad60fc3dcfc358b2c8ec8b4dda4c2780eb439e1c5dcc5d550f2e47ce56ba14309363070078d09b5287e372f6e95686110ff8a2ef1838221",
|
||||
"algorithm": "sha512",
|
||||
"filename": "android-sdk18_0.r18moz1.orig.tar.gz",
|
||||
"unpack": "True"
|
||||
}
|
||||
] """,
|
||||
"emulator_process_name": "emulator64-x86",
|
||||
"emulator_extra_args": "-debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket -qemu -m 1024 -enable-kvm",
|
||||
"device_manager": "adb",
|
||||
"exes": {
|
||||
'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
"env": {
|
||||
"DISPLAY": ":0.0",
|
||||
"PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk18/tools:%(abs_work_dir)s/android-sdk18/platform-tools",
|
||||
},
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'setup-avds',
|
||||
'start-emulators',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-tests',
|
||||
'stop-emulators',
|
||||
],
|
||||
"emulators": [
|
||||
{
|
||||
"name": "test-1",
|
||||
"device_id": "emulator-5554",
|
||||
"http_port": "8854", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4454", # starting ssl port to use for the server
|
||||
"emulator_port": 5554,
|
||||
},
|
||||
{
|
||||
"name": "test-2",
|
||||
"device_id": "emulator-5556",
|
||||
"http_port": "8856", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4456", # starting ssl port to use for the server
|
||||
"emulator_port": 5556,
|
||||
},
|
||||
{
|
||||
"name": "test-3",
|
||||
"device_id": "emulator-5558",
|
||||
"http_port": "8858", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4458", # starting ssl port to use for the server
|
||||
"emulator_port": 5558,
|
||||
},
|
||||
{
|
||||
"name": "test-4",
|
||||
"device_id": "emulator-5560",
|
||||
"http_port": "8860", # starting http port to use for the mochitest server
|
||||
"ssl_port": "4460", # starting ssl port to use for the server
|
||||
"emulator_port": 5560,
|
||||
}
|
||||
],
|
||||
"suite_definitions": {
|
||||
"mochitest": {
|
||||
"run_filename": "runtestsremote.py",
|
||||
"options": ["--app=%(app)s",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--certificate-path=%(certs_path)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--quiet",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--screenshot-on-fail",
|
||||
],
|
||||
},
|
||||
"reftest": {
|
||||
"run_filename": "remotereftest.py",
|
||||
"options": ["--app=%(app)s",
|
||||
"--ignore-window-size",
|
||||
"--remote-webserver=%(remote_webserver)s",
|
||||
"--xre-path=%(xre_path)s",
|
||||
"--utility-path=%(utility_path)s",
|
||||
"--http-port=%(http_port)s",
|
||||
"--ssl-port=%(ssl_port)s",
|
||||
"--httpd-path", "%(modules_dir)s",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
],
|
||||
},
|
||||
"xpcshell": {
|
||||
"run_filename": "remotexpcshelltests.py",
|
||||
"options": ["--xre-path=%(xre_path)s",
|
||||
"--testing-modules-dir=%(modules_dir)s",
|
||||
"--apk=%(installer_path)s",
|
||||
"--no-logfiles",
|
||||
"--symbols-path=%(symbols_path)s",
|
||||
"--manifest=tests/xpcshell.ini",
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--test-plugin-path=none",
|
||||
],
|
||||
},
|
||||
}, # end suite_definitions
|
||||
"test_suite_definitions": {
|
||||
"jsreftest": {
|
||||
"category": "reftest",
|
||||
"tests": ["../jsreftest/tests/jstests.list"],
|
||||
"extra_args": [
|
||||
"--suite=jstestbrowser",
|
||||
"--extra-profile-file=jsreftest/tests/user.js"
|
||||
]
|
||||
},
|
||||
"mochitest-1": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=2", "--this-chunk=1"],
|
||||
},
|
||||
"mochitest-2": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--total-chunks=2", "--this-chunk=2"],
|
||||
},
|
||||
"mochitest-gl": {
|
||||
"category": "mochitest",
|
||||
"extra_args": ["--subsuite=webgl"],
|
||||
},
|
||||
"reftest-1": {
|
||||
"category": "reftest",
|
||||
"extra_args": [
|
||||
"--suite=reftest",
|
||||
"--total-chunks=3",
|
||||
"--this-chunk=1",
|
||||
],
|
||||
"tests": ["tests/layout/reftests/reftest.list"],
|
||||
},
|
||||
"reftest-2": {
|
||||
"extra_args": [
|
||||
"--suite=reftest",
|
||||
"--total-chunks=3",
|
||||
"--this-chunk=2",
|
||||
],
|
||||
"tests": ["tests/layout/reftests/reftest.list"],
|
||||
},
|
||||
"reftest-3": {
|
||||
"extra_args": [
|
||||
"--suite=reftest",
|
||||
"--total-chunks=3",
|
||||
"--this-chunk=3",
|
||||
],
|
||||
"tests": ["tests/layout/reftests/reftest.list"],
|
||||
},
|
||||
"crashtest": {
|
||||
"category": "reftest",
|
||||
"extra_args": ["--suite=crashtest"],
|
||||
"tests": ["tests/testing/crashtest/crashtests.list"]
|
||||
},
|
||||
"xpcshell": {
|
||||
"category": "xpcshell",
|
||||
# XXX --manifest is superceded by testing/config/mozharness/android_x86_config.py.
|
||||
# Remove when Gecko 35 no longer in tbpl.
|
||||
"extra_args": ["--manifest=tests/xpcshell_android.ini"]
|
||||
},
|
||||
}, # end of "test_definitions"
|
||||
"download_minidump_stackwalk": True,
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
}
|
||||
18
testing/mozharness/configs/balrog/docker-worker.py
Normal file
18
testing/mozharness/configs/balrog/docker-worker.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
config = {
|
||||
'balrog_servers': [
|
||||
{
|
||||
'balrog_api_root': 'http://balrog/api',
|
||||
'ignore_failures': False,
|
||||
'url_replacements': [
|
||||
('http://archive.mozilla.org/pub', 'http://download.cdn.mozilla.net/pub'),
|
||||
],
|
||||
'balrog_usernames': {
|
||||
'firefox': 'ffxbld',
|
||||
'thunderbird': 'tbirdbld',
|
||||
'mobile': 'ffxbld',
|
||||
'Fennec': 'ffxbld',
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
28
testing/mozharness/configs/balrog/production.py
Normal file
28
testing/mozharness/configs/balrog/production.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
config = {
|
||||
'balrog_servers': [
|
||||
{
|
||||
'balrog_api_root': 'https://aus4-admin.mozilla.org/api',
|
||||
'ignore_failures': False,
|
||||
'url_replacements': [
|
||||
('http://archive.mozilla.org/pub', 'http://download.cdn.mozilla.net/pub'),
|
||||
],
|
||||
'balrog_usernames': {
|
||||
'firefox': 'ffxbld',
|
||||
'thunderbird': 'tbirdbld',
|
||||
'mobile': 'ffxbld',
|
||||
'Fennec': 'ffxbld',
|
||||
}
|
||||
},
|
||||
# Bug 1261346 - temporarily disable staging balrog submissions
|
||||
# {
|
||||
# 'balrog_api_root': 'https://aus4-admin-dev.allizom.org/api',
|
||||
# 'ignore_failures': True,
|
||||
# 'balrog_usernames': {
|
||||
# 'firefox': 'stage-ffxbld',
|
||||
# 'thunderbird': 'stage-tbirdbld',
|
||||
# 'mobile': 'stage-ffxbld',
|
||||
# 'Fennec': 'stage-ffxbld',
|
||||
# }
|
||||
# }
|
||||
]
|
||||
}
|
||||
14
testing/mozharness/configs/balrog/staging.py
Normal file
14
testing/mozharness/configs/balrog/staging.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
config = {
|
||||
'balrog_servers': [
|
||||
{
|
||||
'balrog_api_root': 'https://aus4-admin-dev.allizom.org/api',
|
||||
'ignore_failures': False,
|
||||
'balrog_usernames': {
|
||||
'firefox': 'stage-ffxbld',
|
||||
'thunderbird': 'stage-tbirdbld',
|
||||
'mobile': 'stage-ffxbld',
|
||||
'Fennec': 'stage-ffxbld',
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
191
testing/mozharness/configs/beetmover/en_us_build.yml.tmpl
Normal file
191
testing/mozharness/configs/beetmover/en_us_build.yml.tmpl
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for the en-US locale"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
{% for locale in locales %}
|
||||
{{ locale }}:
|
||||
|
||||
{% if platform == "win32" %}
|
||||
buildinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.json
|
||||
mozinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.mozinfo.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.mozinfo.json
|
||||
socorroinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.txt
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.txt
|
||||
jsshell:
|
||||
artifact: {{ artifact_base_url }}/jsshell-{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}jsshell-{{ platform }}.zip
|
||||
mozharness_package:
|
||||
artifact: {{ artifact_base_url }}/mozharness.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/mozharness.zip
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
symbols:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.crashreporter-symbols.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.crashreporter-symbols.zip
|
||||
buildid_info:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}_info.txt
|
||||
s3_key: {{ s3_prefix }}win32_info.txt
|
||||
sdk:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.sdk.zip
|
||||
s3_key: {{ s3_prefix }}firefox-{{ version }}.{{ platform }}.sdk.zip
|
||||
mar_tools_mar:
|
||||
artifact: {{ artifact_base_url }}/mar.exe
|
||||
s3_key: {{ s3_prefix }}mar-tools/win32/mar.exe
|
||||
mar_tools_mbdiff:
|
||||
artifact: {{ artifact_base_url }}/mbsdiff.exe
|
||||
s3_key: {{ s3_prefix }}mar-tools/win32/mbsdiff.exe
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "win64" %}
|
||||
buildinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.json
|
||||
mozinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.mozinfo.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.mozinfo.json
|
||||
socorroinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.txt
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.txt
|
||||
jsshell:
|
||||
artifact: {{ artifact_base_url }}/jsshell-{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}jsshell-{{ platform }}.zip
|
||||
mozharness_package:
|
||||
artifact: {{ artifact_base_url }}/mozharness.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/mozharness.zip
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
symbols:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.crashreporter-symbols.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.crashreporter-symbols.zip
|
||||
buildid_info:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}_info.txt
|
||||
s3_key: {{ s3_prefix }}win64_info.txt
|
||||
sdk:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.sdk.zip
|
||||
s3_key: {{ s3_prefix }}firefox-{{ version }}.{{ platform }}.sdk.zip
|
||||
mar_tools_mar:
|
||||
artifact: {{ artifact_base_url }}/mar.exe
|
||||
s3_key: {{ s3_prefix }}mar-tools/win64/mar.exe
|
||||
mar_tools_mbdiff:
|
||||
artifact: {{ artifact_base_url }}/mbsdiff.exe
|
||||
s3_key: {{ s3_prefix }}mar-tools/win64/mbsdiff.exe
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-i686" %}
|
||||
buildinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.json
|
||||
mozinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.mozinfo.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.mozinfo.json
|
||||
socorroinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.txt
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.txt
|
||||
jsshell:
|
||||
artifact: {{ artifact_base_url }}/jsshell-{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}jsshell-{{ platform }}.zip
|
||||
mozharness_package:
|
||||
artifact: {{ artifact_base_url }}/mozharness.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/mozharness.zip
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
symbols:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.crashreporter-symbols.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.crashreporter-symbols.zip
|
||||
buildid_info:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}_info.txt
|
||||
s3_key: {{ s3_prefix }}linux_info.txt
|
||||
sdk:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.sdk.tar.bz2
|
||||
s3_key: {{ s3_prefix }}firefox-{{ version }}.{{ platform }}.sdk.tar.bz2
|
||||
mar_tools_mar:
|
||||
artifact: {{ artifact_base_url }}/mar
|
||||
s3_key: {{ s3_prefix }}mar-tools/linux/mar
|
||||
mar_tools_mbdiff:
|
||||
artifact: {{ artifact_base_url }}/mbsdiff
|
||||
s3_key: {{ s3_prefix }}mar-tools/linux/mbsdiff
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-x86_64" %}
|
||||
buildinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.json
|
||||
mozinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.mozinfo.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.mozinfo.json
|
||||
socorroinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.txt
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.txt
|
||||
jsshell:
|
||||
artifact: {{ artifact_base_url }}/jsshell-{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}jsshell-{{ platform }}.zip
|
||||
mozharness_package:
|
||||
artifact: {{ artifact_base_url }}/mozharness.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/mozharness.zip
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
symbols:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.crashreporter-symbols.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.crashreporter-symbols.zip
|
||||
buildid_info:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}_info.txt
|
||||
s3_key: {{ s3_prefix }}linux64_info.txt
|
||||
sdk:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.sdk.tar.bz2
|
||||
s3_key: {{ s3_prefix }}firefox-{{ version }}.{{ platform }}.sdk.tar.bz2
|
||||
mar_tools_mar:
|
||||
artifact: {{ artifact_base_url }}/mar
|
||||
s3_key: {{ s3_prefix }}mar-tools/linux64/mar
|
||||
mar_tools_mbdiff:
|
||||
artifact: {{ artifact_base_url }}/mbsdiff
|
||||
s3_key: {{ s3_prefix }}mar-tools/linux64/mbsdiff
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "mac" %}
|
||||
buildinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.json
|
||||
mozinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.mozinfo.json
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.mozinfo.json
|
||||
socorroinfo:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.txt
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.txt
|
||||
jsshell:
|
||||
artifact: {{ artifact_base_url }}/jsshell-{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}jsshell-{{ platform }}.zip
|
||||
mozharness_package:
|
||||
artifact: {{ artifact_base_url }}/mozharness.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/mozharness.zip
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
symbols:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.crashreporter-symbols.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox {{ version }}.crashreporter-symbols.zip
|
||||
buildid_info:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}_info.txt
|
||||
s3_key: {{ s3_prefix }}macosx64_info.txt
|
||||
sdk:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}-x86_64.sdk.tar.bz2
|
||||
s3_key: {{ s3_prefix }}firefox-{{ version }}.{{ platform }}-x86_64.sdk.tar.bz2
|
||||
mar_tools_mar:
|
||||
artifact: {{ artifact_base_url }}/mar
|
||||
s3_key: {{ s3_prefix }}mar-tools/macosx64/mar
|
||||
mar_tools_mbdiff:
|
||||
artifact: {{ artifact_base_url }}/mbsdiff
|
||||
s3_key: {{ s3_prefix }}mar-tools/macosx64/mbsdiff
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
66
testing/mozharness/configs/beetmover/en_us_signing.yml.tmpl
Normal file
66
testing/mozharness/configs/beetmover/en_us_signing.yml.tmpl
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for the en-US locale"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
{% for locale in locales %}
|
||||
{{ locale }}:
|
||||
{% if platform == "win32" %}
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
full_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup {{ version }}.exe
|
||||
{% if "esr" not in version %}
|
||||
stub_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer-stub.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup Stub {{ version }}.exe
|
||||
{% endif %}
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "win64" %}
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
full_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup {{ version }}.exe
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-i686" %}
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.tar.bz2
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-x86_64" %}
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.tar.bz2
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "mac" %}
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.dmg
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox {{ version }}.dmg
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
11
testing/mozharness/configs/beetmover/l10n_changesets.tmpl
Normal file
11
testing/mozharness/configs/beetmover/l10n_changesets.tmpl
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover L10N Changesets"
|
||||
description: "Maps artifact locations to s3 key names for L10N changesets"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
all:
|
||||
l10n_changesets:
|
||||
artifact: {{ artifact_base_url }}/l10n_changesets.txt
|
||||
s3_key: {{ s3_prefix }}l10n_changesets.txt
|
||||
16
testing/mozharness/configs/beetmover/partials.yml.tmpl
Normal file
16
testing/mozharness/configs/beetmover/partials.yml.tmpl
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for partials"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
{% for locale in locales %}
|
||||
{{ locale }}:
|
||||
partial_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ partial_version }}-{{ version }}.{{ locale }}.{{ platform }}.partial.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ partial_version }}-{{ version }}.partial.mar
|
||||
partial_mar_sig:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ partial_version }}-{{ version }}.{{ locale }}.{{ platform }}.partial.mar.asc
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ partial_version }}-{{ version }}.partial.mar.asc
|
||||
{% endfor %}
|
||||
65
testing/mozharness/configs/beetmover/repacks.yml.tmpl
Normal file
65
testing/mozharness/configs/beetmover/repacks.yml.tmpl
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for the non en-US locales"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
{% for locale in locales %}
|
||||
# common deliverables
|
||||
{{ locale }}:
|
||||
complete_mar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.complete.mar
|
||||
s3_key: {{ s3_prefix }}update/{{ platform }}/{{ locale }}/firefox-{{ version }}.complete.mar
|
||||
checksum:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.checksums
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.checksums
|
||||
checksum_sig:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.checksums.asc
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.checksums.asc
|
||||
xpi:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.langpack.xpi
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/xpi/{{ locale }}.xpi
|
||||
|
||||
{% if platform == "win32" %}
|
||||
full_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup {{ version }}.exe
|
||||
{% if "esr" not in version %}
|
||||
stub_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer-stub.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup Stub {{ version }}.exe
|
||||
{% endif %}
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "win64" %}
|
||||
full_installer:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.installer.exe
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox Setup {{ version }}.exe
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.zip
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.zip
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-i686" %}
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.tar.bz2
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "linux-x86_64" %}
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.tar.bz2
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/firefox-{{ version }}.tar.bz2
|
||||
{% endif %}
|
||||
|
||||
{% if platform == "mac" %}
|
||||
package:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ app_version }}.{{ locale }}.{{ platform }}.dmg
|
||||
s3_key: {{ s3_prefix }}{{ platform }}/{{ locale }}/Firefox {{ version }}.dmg
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
11
testing/mozharness/configs/beetmover/snap.yml.tmpl
Normal file
11
testing/mozharness/configs/beetmover/snap.yml.tmpl
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for snap iamge"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
all:
|
||||
snap:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.snap
|
||||
s3_key: {{ s3_prefix }}snap/firefox-{{ version }}.snap
|
||||
14
testing/mozharness/configs/beetmover/snap_checksums.yml.tmpl
Normal file
14
testing/mozharness/configs/beetmover/snap_checksums.yml.tmpl
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for snap checksums"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
all:
|
||||
snap_checksum:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.snap.checksums
|
||||
s3_key: {{ s3_prefix }}snap/firefox-{{ version }}.snap.checksums
|
||||
snap_checksum_asc:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.snap.checksums.asc
|
||||
s3_key: {{ s3_prefix }}snap/firefox-{{ version }}.snap.checksums.asc
|
||||
14
testing/mozharness/configs/beetmover/source.yml.tmpl
Normal file
14
testing/mozharness/configs/beetmover/source.yml.tmpl
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for source bundles"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
all:
|
||||
source_bundle:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.bundle
|
||||
s3_key: {{ s3_prefix }}source/firefox-{{ version }}.bundle
|
||||
source_tar:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.source.tar.xz
|
||||
s3_key: {{ s3_prefix }}source/firefox-{{ version }}.source.tar.xz
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
metadata:
|
||||
name: "Beet Mover Manifest"
|
||||
description: "Maps artifact locations to s3 key names for source bundle checksums"
|
||||
owner: "release@mozilla.com"
|
||||
|
||||
mapping:
|
||||
all:
|
||||
source_checksum:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.source.checksums
|
||||
s3_key: {{ s3_prefix }}source/firefox-{{ version }}.source.checksums
|
||||
source_checksum_asc:
|
||||
artifact: {{ artifact_base_url }}/firefox-{{ version }}.source.checksums.asc
|
||||
s3_key: {{ s3_prefix }}source/firefox-{{ version }}.source.checksums.asc
|
||||
469
testing/mozharness/configs/builds/branch_specifics.py
Normal file
469
testing/mozharness/configs/builds/branch_specifics.py
Normal file
|
|
@ -0,0 +1,469 @@
|
|||
# this is a dict of branch specific keys/values. As this fills up and more
|
||||
# fx build factories are ported, we might deal with this differently
|
||||
|
||||
# we should be able to port this in-tree and have the respective repos and
|
||||
# revisions handle what goes on in here. Tracking: bug 978510
|
||||
|
||||
# example config and explanation of how it works:
|
||||
# config = {
|
||||
# # if a branch matches a key below, override items in self.config with
|
||||
# # items in the key's value.
|
||||
# # this override can be done for every platform or at a platform level
|
||||
# '<branch-name>': {
|
||||
# # global config items (applies to all platforms and build types)
|
||||
# 'repo_path': "projects/<branch-name>",
|
||||
# 'graph_server_branch_name': "Firefox",
|
||||
#
|
||||
# # platform config items (applies to specific platforms)
|
||||
# 'platform_overrides': {
|
||||
# # if a platform matches a key below, override items in
|
||||
# # self.config with items in the key's value
|
||||
# 'linux64-debug': {
|
||||
# 'upload_symbols': False,
|
||||
# },
|
||||
# 'win64': {
|
||||
# 'enable_checktests': False,
|
||||
# },
|
||||
# }
|
||||
# },
|
||||
# }
|
||||
|
||||
config = {
|
||||
### release branches
|
||||
"mozilla-central": {
|
||||
"repo_path": 'mozilla-central',
|
||||
"update_channel": "nightly",
|
||||
"graph_server_branch_name": "Firefox",
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'mozilla-release': {
|
||||
'enable_release_promotion': True,
|
||||
'repo_path': 'releases/mozilla-release',
|
||||
'update_channel': 'release',
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
'platform_overrides': {
|
||||
'linux': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'macosx64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win32': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-cc': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-tsan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
},
|
||||
},
|
||||
'mozilla-beta': {
|
||||
'enable_release_promotion': 1,
|
||||
'repo_path': 'releases/mozilla-beta',
|
||||
'update_channel': 'beta',
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
'platform_overrides': {
|
||||
'linux': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/beta',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/beta',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'macosx64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/beta',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win32': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/beta',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/beta',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-cc': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-tsan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64-add-on-devel': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
},
|
||||
},
|
||||
'mozilla-esr52': {
|
||||
'enable_release_promotion': True,
|
||||
'repo_path': 'releases/mozilla-esr52',
|
||||
'update_channel': 'esr',
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'use_branch_in_symbols_extra_buildid': False,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
'platform_overrides': {
|
||||
'linux': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'macosx64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win32': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'win64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/release',
|
||||
'force_clobber': True,
|
||||
},
|
||||
'linux-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-cc': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-tsan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
},
|
||||
},
|
||||
'mozilla-aurora': {
|
||||
'repo_path': 'releases/mozilla-aurora',
|
||||
'update_channel': 'aurora',
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'try': {
|
||||
'repo_path': 'try',
|
||||
'clone_by_revision': True,
|
||||
'clone_with_purge': True,
|
||||
'tinderbox_build_dir': '%(who)s-%(got_revision)s',
|
||||
'to_tinderbox_dated': False,
|
||||
'include_post_upload_builddir': True,
|
||||
'release_to_try_builds': True,
|
||||
'stage_server': 'upload.trybld.productdelivery.prod.mozaws.net',
|
||||
'stage_username': 'trybld',
|
||||
'stage_ssh_key': 'trybld_dsa',
|
||||
'branch_supports_uploadsymbols': False,
|
||||
'use_clobberer': False,
|
||||
},
|
||||
|
||||
### project branches
|
||||
#'fx-team': {}, #Bug 1296396
|
||||
'gum': {
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'mozilla-inbound': {
|
||||
'repo_path': 'integration/mozilla-inbound',
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'autoland': {
|
||||
'repo_path': 'integration/autoland',
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'ux': {
|
||||
"graph_server_branch_name": "UX",
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
# When build promotion goes live the mozconfig changes are probably better
|
||||
# expressed once in files like configs/builds/releng_base_windows_32_builds.py
|
||||
'date': {
|
||||
'update_channel': 'beta-dev',
|
||||
'enable_release_promotion': 1,
|
||||
'platform_overrides': {
|
||||
'linux': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/beta',
|
||||
},
|
||||
'linux-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/beta',
|
||||
},
|
||||
'linux64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-cc': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-tsan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/beta',
|
||||
},
|
||||
'macosx64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/beta',
|
||||
},
|
||||
'win32-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/beta',
|
||||
},
|
||||
'win64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
},
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'cypress': {
|
||||
# bug 1164935
|
||||
'branch_uses_per_checkin_strategy': True,
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
|
||||
### other branches that do not require anything special:
|
||||
'alder': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'ash': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'birch': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
# 'build-system': {}
|
||||
'cedar': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'elm': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'fig': {},
|
||||
'graphics': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
# 'holly': {},
|
||||
'jamun': {
|
||||
'update_channel': 'release-dev',
|
||||
'enable_release_promotion': 1,
|
||||
'platform_overrides': {
|
||||
'linux': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/release',
|
||||
},
|
||||
'linux-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/release',
|
||||
},
|
||||
'linux64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-asan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-cc': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'linux64-tsan': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/release',
|
||||
},
|
||||
'macosx64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'macosx64-st-an-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win32': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/release',
|
||||
},
|
||||
'win32-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
'win64': {
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/release',
|
||||
},
|
||||
'win64-debug': {
|
||||
'update_channel': 'default',
|
||||
},
|
||||
},
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'larch': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
# 'maple': {},
|
||||
'oak': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
'pine': {
|
||||
'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
},
|
||||
}
|
||||
44
testing/mozharness/configs/builds/build_pool_specifics.py
Normal file
44
testing/mozharness/configs/builds/build_pool_specifics.py
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# this is a dict of pool specific keys/values. As this fills up and more
|
||||
# fx build factories are ported, we might deal with this differently
|
||||
|
||||
config = {
|
||||
"staging": {
|
||||
# if not clobberer_url, only clobber 'abs_work_dir'
|
||||
# if true: possibly clobber, clobberer
|
||||
# see PurgeMixin for clobber() conditions
|
||||
'clobberer_url': 'https://api-pub-build.allizom.org/clobberer/lastclobber',
|
||||
# staging we should use MozillaTest
|
||||
# but in production we let the self.branch decide via
|
||||
# self._query_graph_server_branch_name()
|
||||
"graph_server_branch_name": "MozillaTest",
|
||||
'graph_server': 'graphs.allizom.org',
|
||||
'stage_server': 'upload.ffxbld.productdelivery.stage.mozaws.net',
|
||||
"sendchange_masters": ["dev-master1.srv.releng.scl3.mozilla.com:9038"],
|
||||
'taskcluster_index': 'index.garbage.staging',
|
||||
'post_upload_extra': ['--bucket-prefix', 'net-mozaws-stage-delivery',
|
||||
'--url-prefix', 'http://ftp.stage.mozaws.net/',
|
||||
],
|
||||
},
|
||||
"production": {
|
||||
# if not clobberer_url, only clobber 'abs_work_dir'
|
||||
# if true: possibly clobber, clobberer
|
||||
# see PurgeMixin for clobber() conditions
|
||||
'clobberer_url': 'https://api.pub.build.mozilla.org/clobberer/lastclobber',
|
||||
'graph_server': 'graphs.mozilla.org',
|
||||
# bug 1216907, set this at branch level
|
||||
# 'stage_server': 'upload.ffxbld.productdelivery.prod.mozaws.net',
|
||||
"sendchange_masters": ["buildbot-master81.build.mozilla.org:9301"],
|
||||
'taskcluster_index': 'index',
|
||||
},
|
||||
"taskcluster": {
|
||||
'graph_server': 'graphs.mozilla.org',
|
||||
'stage_server': 'ignored',
|
||||
# use the relengapi proxy to talk to tooltool
|
||||
"tooltool_servers": ['http://relengapi/tooltool/'],
|
||||
"tooltool_url": 'http://relengapi/tooltool/',
|
||||
'upload_env': {
|
||||
'UPLOAD_HOST': 'localhost',
|
||||
'UPLOAD_PATH': '/home/worker/artifacts',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,111 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## ANDROID GENERIC CONFIG KEYS/VAlUES
|
||||
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'multi-l10n',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
# mock shtuff
|
||||
'mock_mozilla_dir': '/builds/mock_mozilla',
|
||||
'mock_target': 'mozilla-centos6-x86_64-android',
|
||||
'mock_files': [
|
||||
('/home/cltbld/.ssh', '/home/mock_mozilla/.ssh'),
|
||||
('/home/cltbld/.hgrc', '/builds/.hgrc'),
|
||||
('/home/cltbld/.boto', '/builds/.boto'),
|
||||
('/builds/relengapi.tok', '/builds/relengapi.tok'),
|
||||
('/tools/tooltool.py', '/builds/tooltool.py'),
|
||||
('/builds/mozilla-api.key', '/builds/mozilla-api.key'),
|
||||
('/builds/mozilla-fennec-geoloc-api.key', '/builds/mozilla-fennec-geoloc-api.key'),
|
||||
('/builds/crash-stats-api.token', '/builds/crash-stats-api.token'),
|
||||
('/usr/local/lib/hgext', '/usr/local/lib/hgext'),
|
||||
],
|
||||
'secret_files': [
|
||||
{'filename': '/builds/mozilla-fennec-geoloc-api.key',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/mozilla-fennec-geoloc-api.key',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk-beta.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk-beta.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
],
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
'multi_locale': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
'base_name': 'Android 2.3 %(branch)s',
|
||||
'platform': 'android',
|
||||
'stage_platform': 'android',
|
||||
'stage_product': 'mobile',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'post_upload_include_platform': True,
|
||||
'enable_max_vsize': False,
|
||||
'use_package_as_marfile': True,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/bin:/usr/bin',
|
||||
'SHIP_LICENSED_FONTS': '1',
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/home/mock_mozilla/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux/minidump_stackwalk',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'mock_packages': ['autoconf213', 'mozilla-python27-mercurial', 'yasm',
|
||||
'ccache', 'zip', "gcc472_0moz1", "gcc473_0moz1",
|
||||
'java-1.7.0-openjdk-devel', 'zlib-devel',
|
||||
'glibc-static', 'openssh-clients', 'mpfr',
|
||||
'wget', 'glibc.i686', 'libstdc++.i686',
|
||||
'zlib.i686', 'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'ant', 'ant-apache-regexp'
|
||||
],
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android/nightly',
|
||||
'tooltool_manifest_src': "mobile/android/config/tooltool-manifests/android/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
160
testing/mozharness/configs/builds/releng_base_linux_32_builds.py
Normal file
160
testing/mozharness/configs/builds/releng_base_linux_32_builds.py
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## LINUX GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_linux_64_builds.py
|
||||
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
# mock shtuff
|
||||
'mock_mozilla_dir': '/builds/mock_mozilla',
|
||||
'mock_target': 'mozilla-centos6-x86_64',
|
||||
'mock_files': [
|
||||
('/home/cltbld/.ssh', '/home/mock_mozilla/.ssh'),
|
||||
('/home/cltbld/.hgrc', '/builds/.hgrc'),
|
||||
('/home/cltbld/.boto', '/builds/.boto'),
|
||||
('/builds/gapi.data', '/builds/gapi.data'),
|
||||
('/builds/relengapi.tok', '/builds/relengapi.tok'),
|
||||
('/tools/tooltool.py', '/builds/tooltool.py'),
|
||||
('/builds/mozilla-desktop-geoloc-api.key', '/builds/mozilla-desktop-geoloc-api.key'),
|
||||
('/builds/crash-stats-api.token', '/builds/crash-stats-api.token'),
|
||||
('/builds/adjust-sdk.token', '/builds/adjust-sdk.token'),
|
||||
('/builds/adjust-sdk-beta.token', '/builds/adjust-sdk-beta.token'),
|
||||
('/usr/local/lib/hgext', '/usr/local/lib/hgext'),
|
||||
],
|
||||
'secret_files': [
|
||||
{'filename': '/builds/gapi.data',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/gapi.data',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/mozilla-desktop-geoloc-api.key',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/mozilla-desktop-geoloc-api.key',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk-beta.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk-beta.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
],
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'Linux_%(branch)s',
|
||||
'platform': 'linux',
|
||||
'stage_platform': 'linux',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# 32 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib/ccache:\
|
||||
/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:\
|
||||
/tools/python27/bin:/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib",
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/home/mock_mozilla/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux/minidump_stackwalk',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind',
|
||||
######## 32 bit specific ###########
|
||||
'glibc-static.i686', 'libstdc++-static.i686',
|
||||
'gtk2-devel.i686', 'libnotify-devel.i686',
|
||||
'alsa-lib-devel.i686', 'libcurl-devel.i686',
|
||||
'wireless-tools-devel.i686', 'libX11-devel.i686',
|
||||
'libXt-devel.i686', 'mesa-libGL-devel.i686',
|
||||
'gnome-vfs2-devel.i686', 'GConf2-devel.i686',
|
||||
'pulseaudio-libs-devel.i686',
|
||||
'gstreamer-devel.i686', 'gstreamer-plugins-base-devel.i686',
|
||||
# Packages already installed in the mock environment, as x86_64
|
||||
# packages.
|
||||
'glibc-devel.i686', 'libgcc.i686', 'libstdc++-devel.i686',
|
||||
# yum likes to install .x86_64 -devel packages that satisfy .i686
|
||||
# -devel packages dependencies. So manually install the dependencies
|
||||
# of the above packages.
|
||||
'ORBit2-devel.i686', 'atk-devel.i686', 'cairo-devel.i686',
|
||||
'check-devel.i686', 'dbus-devel.i686', 'dbus-glib-devel.i686',
|
||||
'fontconfig-devel.i686', 'glib2-devel.i686',
|
||||
'hal-devel.i686', 'libICE-devel.i686', 'libIDL-devel.i686',
|
||||
'libSM-devel.i686', 'libXau-devel.i686', 'libXcomposite-devel.i686',
|
||||
'libXcursor-devel.i686', 'libXdamage-devel.i686',
|
||||
'libXdmcp-devel.i686', 'libXext-devel.i686', 'libXfixes-devel.i686',
|
||||
'libXft-devel.i686', 'libXi-devel.i686', 'libXinerama-devel.i686',
|
||||
'libXrandr-devel.i686', 'libXrender-devel.i686',
|
||||
'libXxf86vm-devel.i686', 'libdrm-devel.i686', 'libidn-devel.i686',
|
||||
'libpng-devel.i686', 'libxcb-devel.i686', 'libxml2-devel.i686',
|
||||
'pango-devel.i686', 'perl-devel.i686', 'pixman-devel.i686',
|
||||
'zlib-devel.i686',
|
||||
# Freetype packages need to be installed be version, because a newer
|
||||
# version is available, but we don't want it for Firefox builds.
|
||||
'freetype-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
######## 32 bit specific ###########
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/nightly',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux32/\
|
||||
releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
139
testing/mozharness/configs/builds/releng_base_linux_64_builds.py
Normal file
139
testing/mozharness/configs/builds/releng_base_linux_64_builds.py
Normal file
|
|
@ -0,0 +1,139 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## LINUX GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 64 bit keys/values please add them
|
||||
# below under the '64 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_linux_64_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
# mock shtuff
|
||||
'mock_mozilla_dir': '/builds/mock_mozilla',
|
||||
'mock_target': 'mozilla-centos6-x86_64',
|
||||
'mock_files': [
|
||||
('/home/cltbld/.ssh', '/home/mock_mozilla/.ssh'),
|
||||
('/home/cltbld/.hgrc', '/builds/.hgrc'),
|
||||
('/home/cltbld/.boto', '/builds/.boto'),
|
||||
('/builds/gapi.data', '/builds/gapi.data'),
|
||||
('/builds/relengapi.tok', '/builds/relengapi.tok'),
|
||||
('/tools/tooltool.py', '/builds/tooltool.py'),
|
||||
('/builds/mozilla-desktop-geoloc-api.key', '/builds/mozilla-desktop-geoloc-api.key'),
|
||||
('/builds/crash-stats-api.token', '/builds/crash-stats-api.token'),
|
||||
('/builds/adjust-sdk.token', '/builds/adjust-sdk.token'),
|
||||
('/builds/adjust-sdk-beta.token', '/builds/adjust-sdk-beta.token'),
|
||||
('/usr/local/lib/hgext', '/usr/local/lib/hgext'),
|
||||
],
|
||||
'secret_files': [
|
||||
{'filename': '/builds/gapi.data',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/gapi.data',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/mozilla-desktop-geoloc-api.key',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/mozilla-desktop-geoloc-api.key',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/adjust-sdk-beta.token',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/adjust-sdk-beta.token',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
],
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'Linux_x86-64_%(branch)s',
|
||||
'platform': 'linux64',
|
||||
'stage_platform': 'linux64',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib64",
|
||||
##
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/home/mock_mozilla/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux64/minidump_stackwalk',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind', 'dbus-x11',
|
||||
######## 64 bit specific ###########
|
||||
'glibc-static', 'libstdc++-static',
|
||||
'gtk2-devel', 'libnotify-devel',
|
||||
'alsa-lib-devel', 'libcurl-devel', 'wireless-tools-devel',
|
||||
'libX11-devel', 'libXt-devel', 'mesa-libGL-devel', 'gnome-vfs2-devel',
|
||||
'GConf2-devel',
|
||||
### from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'pulseaudio-libs-devel', 'gstreamer-devel',
|
||||
'gstreamer-plugins-base-devel', 'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.x86_64'
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/nightly',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## MACOSX GENERIC CONFIG KEYS/VAlUES
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
# 'setup-mock',
|
||||
'checkout-sources',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox/x86_64',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'OS X 10.7 %(branch)s',
|
||||
'platform': 'macosx64',
|
||||
'stage_platform': 'macosx64',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'CHOWN_ROOT': '~/bin/chown_root',
|
||||
'CHOWN_REVERT': '~/bin/chown_revert',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/Users/cltbld/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/osx64/minidump_stackwalk',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/nightly',
|
||||
'tooltool_manifest_src': 'browser/config/tooltool-manifests/macosx64/releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## MACOSX CROSS GENERIC CONFIG KEYS/VAlUES
|
||||
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'build',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'secret_files': [
|
||||
{'filename': '/builds/gapi.data',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/gapi.data',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/mozilla-desktop-geoloc-api.key',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/mozilla-desktop-geoloc-api.key',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
],
|
||||
'enable_ccache': True,
|
||||
'enable_check_test': False,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox/',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'OS X 10.7 %(branch)s',
|
||||
'platform': 'macosx64',
|
||||
'stage_platform': 'macosx64',
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
##
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/Users/cltbld/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux64/minidump_stackwalk',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/nightly',
|
||||
'tooltool_manifest_src': 'browser/config/tooltool-manifests/macosx64/cross-releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_32_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'WINNT_5.2_%(branch)s',
|
||||
'platform': 'win32',
|
||||
'stage_platform': 'win32',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/8.0/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/c/Users/cltbld/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/win32/minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/nightly',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win32/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_64_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': True,
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'WINNT_6.1_x86-64_%(branch)s',
|
||||
'platform': 'win64',
|
||||
'stage_platform': 'win64',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/8.0/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'upload_env': {
|
||||
# stage_server is dictated from build_pool_specifics.py
|
||||
'UPLOAD_HOST': '%(stage_server)s',
|
||||
'UPLOAD_USER': '%(stage_username)s',
|
||||
'UPLOAD_SSH_KEY': '/c/Users/cltbld/.ssh/%(stage_ssh_key)s',
|
||||
'UPLOAD_TO_TEMP': '1',
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/win64/minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s/minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/nightly',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win64/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 API 15+ %(branch)s',
|
||||
'stage_platform': 'android-api-15',
|
||||
'build_type': 'api-15-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 API 15+ %(branch)s debug',
|
||||
'stage_platform': 'android-api-15-debug',
|
||||
'build_type': 'api-15-debug',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15/debug',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
'debug_build': True,
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 API 15+ %(branch)s Gradle',
|
||||
'stage_platform': 'android-api-15-gradle',
|
||||
'build_type': 'api-15-gradle',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15-gradle/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
# It's not obvious, but postflight_build is after packaging, so the Gecko
|
||||
# binaries are in the object directory, ready to be packaged into the
|
||||
# GeckoView AAR.
|
||||
'postflight_build_mach_commands': [
|
||||
['gradle',
|
||||
'geckoview:assembleWithGeckoBinaries',
|
||||
'geckoview_example:assembleWithGeckoBinaries',
|
||||
'uploadArchives',
|
||||
],
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 API 15+ Gradle dependencies %(branch)s',
|
||||
'stage_platform': 'android-api-15-gradle-dependencies',
|
||||
'build_type': 'api-15-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15-gradle-dependencies/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android-gradle-dependencies/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
'postflight_build_mach_commands': [
|
||||
['gradle',
|
||||
'assembleAutomationRelease',
|
||||
'assembleAutomationDebug',
|
||||
'assembleAutomationDebugAndroidTest',
|
||||
'checkstyle',
|
||||
# Does not include Gecko binaries -- see mobile/android/gradle/with_gecko_binaries.gradle.
|
||||
'geckoview:assembleWithoutGeckoBinaries',
|
||||
# So that we pick up the test dependencies for the builders.
|
||||
'geckoview_example:assembleWithoutGeckoBinaries',
|
||||
'geckoview_example:assembleWithoutGeckoBinariesAndroidTest',
|
||||
],
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 API 15+ partner Sample1 %(branch)s',
|
||||
'stage_platform': 'android-api-15-partner-sample1',
|
||||
'build_type': 'api-15-partner-sample1-opt',
|
||||
'src_mozconfig': None, # use manifest to determine mozconfig src
|
||||
'src_mozconfig_manifest': 'partner/mozconfigs/mozconfig1.json',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
config = {
|
||||
'base_name': 'Android checkstyle %(branch)s',
|
||||
'stage_platform': 'android-checkstyle',
|
||||
'build_type': 'api-15-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15-frontend/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android-frontend/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
'postflight_build_mach_commands': [
|
||||
['gradle', 'app:checkstyle'],
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
config = {
|
||||
'base_name': 'Android lint %(branch)s',
|
||||
'stage_platform': 'android-lint',
|
||||
'build_type': 'api-15-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15-frontend/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android-frontend/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
'postflight_build_mach_commands': [
|
||||
['gradle', 'app:lintAutomationDebug'],
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
config = {
|
||||
'base_name': 'Android armv7 unit tests %(branch)s',
|
||||
'stage_platform': 'android-test',
|
||||
'build_type': 'api-15-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-api-15-frontend/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android-frontend/releng.manifest',
|
||||
'multi_locale_config_platform': 'android',
|
||||
'postflight_build_mach_commands': [
|
||||
['gradle', 'app:testAutomationDebugUnitTest'],
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
config = {
|
||||
'base_name': 'Android 4.2 x86 %(branch)s',
|
||||
'stage_platform': 'android-x86',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'x86-opt',
|
||||
'src_mozconfig': 'mobile/android/config/mozconfigs/android-x86/nightly',
|
||||
'tooltool_manifest_src': 'mobile/android/config/tooltool-manifests/android-x86/releng.manifest',
|
||||
}
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## LINUX GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_linux_64_builds.py
|
||||
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'Linux_%(branch)s_Artifact_build',
|
||||
'platform': 'linux',
|
||||
'stage_platform': 'linux',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# 32 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib/ccache:\
|
||||
/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:\
|
||||
/tools/python27/bin:/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib",
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind',
|
||||
######## 32 bit specific ###########
|
||||
'glibc-static.i686', 'libstdc++-static.i686',
|
||||
'gtk2-devel.i686', 'libnotify-devel.i686',
|
||||
'alsa-lib-devel.i686', 'libcurl-devel.i686',
|
||||
'wireless-tools-devel.i686', 'libX11-devel.i686',
|
||||
'libXt-devel.i686', 'mesa-libGL-devel.i686',
|
||||
'gnome-vfs2-devel.i686', 'GConf2-devel.i686',
|
||||
'pulseaudio-libs-devel.i686',
|
||||
'gstreamer-devel.i686', 'gstreamer-plugins-base-devel.i686',
|
||||
# Packages already installed in the mock environment, as x86_64
|
||||
# packages.
|
||||
'glibc-devel.i686', 'libgcc.i686', 'libstdc++-devel.i686',
|
||||
# yum likes to install .x86_64 -devel packages that satisfy .i686
|
||||
# -devel packages dependencies. So manually install the dependencies
|
||||
# of the above packages.
|
||||
'ORBit2-devel.i686', 'atk-devel.i686', 'cairo-devel.i686',
|
||||
'check-devel.i686', 'dbus-devel.i686', 'dbus-glib-devel.i686',
|
||||
'fontconfig-devel.i686', 'glib2-devel.i686',
|
||||
'hal-devel.i686', 'libICE-devel.i686', 'libIDL-devel.i686',
|
||||
'libSM-devel.i686', 'libXau-devel.i686', 'libXcomposite-devel.i686',
|
||||
'libXcursor-devel.i686', 'libXdamage-devel.i686',
|
||||
'libXdmcp-devel.i686', 'libXext-devel.i686', 'libXfixes-devel.i686',
|
||||
'libXft-devel.i686', 'libXi-devel.i686', 'libXinerama-devel.i686',
|
||||
'libXrandr-devel.i686', 'libXrender-devel.i686',
|
||||
'libXxf86vm-devel.i686', 'libdrm-devel.i686', 'libidn-devel.i686',
|
||||
'libpng-devel.i686', 'libxcb-devel.i686', 'libxml2-devel.i686',
|
||||
'pango-devel.i686', 'perl-devel.i686', 'pixman-devel.i686',
|
||||
'zlib-devel.i686',
|
||||
# Freetype packages need to be installed be version, because a newer
|
||||
# version is available, but we don't want it for Firefox builds.
|
||||
'freetype-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
######## 32 bit specific ###########
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux32/\
|
||||
releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'debug_build': True,
|
||||
'stage_platform': 'linux-debug',
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 32 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# 32 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': '/tools/gcc-4.3.3/installed/lib:\
|
||||
%s/dist/bin' % (MOZ_OBJDIR,),
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,122 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## LINUX GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_linux_64_builds.py
|
||||
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': MOZ_OBJDIR,
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
# debug specific
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'Linux_%(branch)s_Artifact_build',
|
||||
'platform': 'linux',
|
||||
'stage_platform': 'linux-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# debug-specific
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
# 32 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib/ccache:\
|
||||
/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:\
|
||||
/tools/python27/bin:/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib",
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind',
|
||||
######## 32 bit specific ###########
|
||||
'glibc-static.i686', 'libstdc++-static.i686',
|
||||
'gtk2-devel.i686', 'libnotify-devel.i686',
|
||||
'alsa-lib-devel.i686', 'libcurl-devel.i686',
|
||||
'wireless-tools-devel.i686', 'libX11-devel.i686',
|
||||
'libXt-devel.i686', 'mesa-libGL-devel.i686',
|
||||
'gnome-vfs2-devel.i686', 'GConf2-devel.i686',
|
||||
'pulseaudio-libs-devel.i686',
|
||||
'gstreamer-devel.i686', 'gstreamer-plugins-base-devel.i686',
|
||||
# Packages already installed in the mock environment, as x86_64
|
||||
# packages.
|
||||
'glibc-devel.i686', 'libgcc.i686', 'libstdc++-devel.i686',
|
||||
# yum likes to install .x86_64 -devel packages that satisfy .i686
|
||||
# -devel packages dependencies. So manually install the dependencies
|
||||
# of the above packages.
|
||||
'ORBit2-devel.i686', 'atk-devel.i686', 'cairo-devel.i686',
|
||||
'check-devel.i686', 'dbus-devel.i686', 'dbus-glib-devel.i686',
|
||||
'fontconfig-devel.i686', 'glib2-devel.i686',
|
||||
'hal-devel.i686', 'libICE-devel.i686', 'libIDL-devel.i686',
|
||||
'libSM-devel.i686', 'libXau-devel.i686', 'libXcomposite-devel.i686',
|
||||
'libXcursor-devel.i686', 'libXdamage-devel.i686',
|
||||
'libXdmcp-devel.i686', 'libXext-devel.i686', 'libXfixes-devel.i686',
|
||||
'libXft-devel.i686', 'libXi-devel.i686', 'libXinerama-devel.i686',
|
||||
'libXrandr-devel.i686', 'libXrender-devel.i686',
|
||||
'libXxf86vm-devel.i686', 'libdrm-devel.i686', 'libidn-devel.i686',
|
||||
'libpng-devel.i686', 'libxcb-devel.i686', 'libxml2-devel.i686',
|
||||
'pango-devel.i686', 'perl-devel.i686', 'pixman-devel.i686',
|
||||
'zlib-devel.i686',
|
||||
# Freetype packages need to be installed be version, because a newer
|
||||
# version is available, but we don't want it for Firefox builds.
|
||||
'freetype-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.i686',
|
||||
'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
######## 32 bit specific ###########
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux32/debug-artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux32/\
|
||||
releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
# 'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-add-on-devel',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'add-on-devel',
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/home/worker/workspace/build/src/gcc/bin:/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/add-on-devel',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'sendchange',
|
||||
# 'generate-build-stats',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'secret_files': [
|
||||
{'filename': '/builds/gapi.data',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/gapi.data',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
{'filename': '/builds/mozilla-desktop-geoloc-api.key',
|
||||
'secret_name': 'project/releng/gecko/build/level-%(scm-level)s/mozilla-desktop-geoloc-api.key',
|
||||
'min_scm_level': 2, 'default': 'try-build-has-no-secrets'},
|
||||
],
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'Linux_x86-64_%(branch)s_Artifact_build',
|
||||
'platform': 'linux64',
|
||||
'stage_platform': 'linux64',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib64",
|
||||
##
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind', 'dbus-x11',
|
||||
######## 64 bit specific ###########
|
||||
'glibc-static', 'libstdc++-static',
|
||||
'gtk2-devel', 'libnotify-devel',
|
||||
'alsa-lib-devel', 'libcurl-devel', 'wireless-tools-devel',
|
||||
'libX11-devel', 'libXt-devel', 'mesa-libGL-devel', 'gnome-vfs2-devel',
|
||||
'GConf2-devel',
|
||||
### from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'pulseaudio-libs-devel', 'gstreamer-devel',
|
||||
'gstreamer-plugins-base-devel', 'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.x86_64'
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
releng.manifest",
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-asan',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'asan',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
asan.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/nightly-asan',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-asan-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'asan-debug',
|
||||
'debug_build': True,
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
asan.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/debug-asan',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-asan',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'asan',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
asan.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/nightly-asan',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-asan-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'asan-debug',
|
||||
'debug_build': True,
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
asan.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/debug-asan',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'linux64-ccov',
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
'enable_count_ctors': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/code-coverage',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'linux64-debug',
|
||||
'debug_build': True,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
# 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': '/tools/gcc-4.3.3/installed/lib64:\
|
||||
%s/dist/bin' % (MOZ_OBJDIR,),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'sendchange',
|
||||
# 'generate-build-stats',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': MOZ_OBJDIR,
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
# debug specific
|
||||
'debug_build': True,
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'Linux_x86-64_%(branch)s_Artifact_build',
|
||||
'platform': 'linux64',
|
||||
'stage_platform': 'linux64-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# debug-specific
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib64",
|
||||
##
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind', 'dbus-x11',
|
||||
######## 64 bit specific ###########
|
||||
'glibc-static', 'libstdc++-static',
|
||||
'gtk2-devel', 'libnotify-devel',
|
||||
'alsa-lib-devel', 'libcurl-devel', 'wireless-tools-devel',
|
||||
'libX11-devel', 'libXt-devel', 'mesa-libGL-devel', 'gnome-vfs2-devel',
|
||||
'GConf2-devel',
|
||||
### from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'pulseaudio-libs-devel', 'gstreamer-devel',
|
||||
'gstreamer-plugins-base-devel', 'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.x86_64'
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/debug-artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
releng.manifest",
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'package-source',
|
||||
'generate-source-signing-manifest',
|
||||
],
|
||||
'stage_platform': 'source', # Not used, but required by the script
|
||||
'buildbot_json_path': 'buildprops.json',
|
||||
'app_ini_path': 'FAKE', # Not used, but required by the script
|
||||
'objdir': 'obj-firefox',
|
||||
'env': {
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'LC_ALL': 'C',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/source',
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'debug_build': True,
|
||||
'stage_platform': 'linux64-st-an-debug',
|
||||
'build_type': 'st-an-debug',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
clang.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
'enable_unittest_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
# 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/\
|
||||
debug-static-analysis-clang',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,88 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
# note: overridden by MOZHARNESS_ACTIONS in TaskCluster tasks
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
# 'generate-build-stats',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': True,
|
||||
'enable_talos_sendchange': False,
|
||||
'enable_unittest_sendchange': False,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'Linux_x86-64_%(branch)s_Static_Analysis',
|
||||
'platform': 'linux64',
|
||||
'stage_platform': 'linux64-st-an',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
'LD_LIBRARY_PATH': "/tools/gcc-4.3.3/installed/lib64",
|
||||
##
|
||||
},
|
||||
'mock_packages': [
|
||||
'autoconf213', 'python', 'mozilla-python27', 'zip', 'mozilla-python27-mercurial',
|
||||
'git', 'ccache', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'yasm', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
### <-- from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'valgrind', 'dbus-x11',
|
||||
######## 64 bit specific ###########
|
||||
'glibc-static', 'libstdc++-static',
|
||||
'gtk2-devel', 'libnotify-devel',
|
||||
'alsa-lib-devel', 'libcurl-devel', 'wireless-tools-devel',
|
||||
'libX11-devel', 'libXt-devel', 'mesa-libGL-devel', 'gnome-vfs2-devel',
|
||||
'GConf2-devel',
|
||||
### from releng repo
|
||||
'gcc45_0moz3', 'gcc454_0moz1', 'gcc472_0moz1', 'gcc473_0moz1',
|
||||
'yasm', 'ccache',
|
||||
###
|
||||
'pulseaudio-libs-devel', 'gstreamer-devel',
|
||||
'gstreamer-plugins-base-devel', 'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.x86_64'
|
||||
],
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/opt-static-analysis-clang',
|
||||
'tooltool_manifest_src': 'browser/config/tooltool-manifests/linux64/\
|
||||
clang.manifest.centos6',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
# 'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'linux64-tsan',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
tsan.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/opt-tsan',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
#'setup-mock',
|
||||
'build',
|
||||
#'upload-files',
|
||||
#'sendchange',
|
||||
'check-test',
|
||||
'valgrind-test',
|
||||
#'generate-build-stats',
|
||||
#'update',
|
||||
],
|
||||
'stage_platform': 'linux64-valgrind',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'valgrind',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/linux64/\
|
||||
releng.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'DISPLAY': ':2',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/buildbot/bin:/usr/local/bin:/usr/lib64/ccache:/bin:\
|
||||
/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/tools/git/bin:/tools/python27/bin:\
|
||||
/tools/python27-mercurial/bin:/home/cltbld/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/linux64/valgrind',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
# 'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'macosx64-add-on-devel',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'build_type': 'add-on-devel',
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'objdir': 'obj-firefox',
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/add-on-devel',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## MACOSX GENERIC CONFIG KEYS/VAlUES
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
# 'setup-mock',
|
||||
'checkout-sources',
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': ["/builds/tooltool.py"],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'OS X 10.7 %(branch)s_Artifact_build',
|
||||
'platform': 'macosx64',
|
||||
'stage_platform': 'macosx64',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'CHOWN_ROOT': '~/bin/chown_root',
|
||||
'CHOWN_REVERT': '~/bin/chown_revert',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/artifact',
|
||||
'tooltool_manifest_src': 'browser/config/tooltool-manifests/macosx64/releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'macosx64-debug',
|
||||
'debug_build': True,
|
||||
'objdir': 'obj-firefox',
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock',
|
||||
'build',
|
||||
],
|
||||
'stage_platform': 'macosx64-st-an',
|
||||
'debug_build': False,
|
||||
'objdir': 'obj-firefox',
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/opt-static-analysis',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
config = {
|
||||
'objdir': 'obj-firefox/x86_64',
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx-universal/nightly',
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'macosx64-debug',
|
||||
'debug_build': True,
|
||||
'objdir': 'obj-firefox',
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,65 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## MACOSX GENERIC CONFIG KEYS/VAlUES
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
# 'setup-mock',
|
||||
'checkout-sources',
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": "/tools/buildbot/bin/buildbot",
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': True,
|
||||
'vcs_share_base': '/builds/hg-shared',
|
||||
'objdir': MOZ_OBJDIR,
|
||||
# debug specific
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'OS X 10.7 %(branch)s_Artifact_build',
|
||||
'platform': 'macosx64',
|
||||
'stage_platform': 'macosx64-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
# debug-specific
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
## 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
##
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/debug-artifact',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock',
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'debug_build': True,
|
||||
'stage_platform': 'macosx64-st-an-debug',
|
||||
'build_type': 'st-an-debug',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/macosx64/\
|
||||
clang.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
'enable_unittest_sendchange': False,
|
||||
'objdir': MOZ_OBJDIR,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': '/builds/hg-shared',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/builds',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'CCACHE_DIR': '/builds/ccache',
|
||||
'CCACHE_COMPRESS': '1',
|
||||
'CCACHE_UMASK': '002',
|
||||
'LC_ALL': 'C',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
# 64 bit specific
|
||||
'PATH': '/tools/python/bin:/tools/buildbot/bin:/opt/local/bin:/usr/bin:'
|
||||
'/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/macosx64/debug-static-analysis',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
# 'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'win32-add-on-devel',
|
||||
'build_type': 'add-on-devel',
|
||||
'enable_talos_sendchange': False,
|
||||
#### 32 bit build specific #####
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/add-on-devel',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,81 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_32_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'WINNT_5.2_%(branch)s_Artifact_build',
|
||||
'platform': 'win32',
|
||||
'stage_platform': 'win32',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.0b1;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/8.0/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win32/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'win32-debug',
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 32 bit build specific #####
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_32_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': MOZ_OBJDIR,
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
# debug specific
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'WINNT_5.2_%(branch)s_Artifact_build',
|
||||
'platform': 'win32',
|
||||
'stage_platform': 'win32-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'PATH': 'C:/mozilla-build/nsis-3.0b1;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
# debug-specific
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/debug-artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win32/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
# 'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'win32-st-an-debug',
|
||||
'debug_build': True,
|
||||
'enable_signing': False,
|
||||
'enable_talos_sendchange': False,
|
||||
'enable_unittest_sendchange': False,
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win32/\
|
||||
clang.manifest",
|
||||
'platform_supports_post_upload_to_latest': False,
|
||||
'objdir': MOZ_OBJDIR,
|
||||
#### 32 bit build specific #####
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win32/debug-static-analysis',
|
||||
'purge_minsize': 9,
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
import os
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
# 'sendchange',
|
||||
'check-test',
|
||||
# 'generate-build-stats',
|
||||
# 'update',
|
||||
],
|
||||
'stage_platform': 'win64-add-on-devel',
|
||||
'build_type': 'add-on-devel',
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/add-on-devel',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_64_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'WINNT_6.1_x86-64_%(branch)s_Artifact_build',
|
||||
'platform': 'win64',
|
||||
'stage_platform': 'win64',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.0b1;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/8.0/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win64/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
import os
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'upload-files',
|
||||
'sendchange',
|
||||
'check-test',
|
||||
'generate-build-stats',
|
||||
'update', # decided by query_is_nightly()
|
||||
],
|
||||
'stage_platform': 'win64-debug',
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
#### 64 bit build specific #####
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PATH': 'C:/mozilla-build/nsis-3.01;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
},
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/debug',
|
||||
#######################
|
||||
}
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
MOZ_OBJDIR = 'obj-firefox'
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced with
|
||||
# releng_base_windows_64_builds.py
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'clone-tools',
|
||||
'checkout-sources',
|
||||
# 'setup-mock', windows do not use mock
|
||||
'build',
|
||||
'sendchange',
|
||||
],
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
"buildbot": [
|
||||
sys.executable,
|
||||
'c:\\mozilla-build\\buildbotve\\scripts\\buildbot'
|
||||
],
|
||||
"make": [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
'c:/mozilla-build/buildbotve/virtualenv.py'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': False,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': 'C:/builds/hg-shared',
|
||||
'objdir': MOZ_OBJDIR,
|
||||
'tooltool_script': [sys.executable,
|
||||
'C:/mozilla-build/tooltool.py'],
|
||||
'tooltool_bootstrap': "setup.sh",
|
||||
'enable_count_ctors': False,
|
||||
# debug specific
|
||||
'debug_build': True,
|
||||
'enable_talos_sendchange': False,
|
||||
# allows triggering of test jobs when --artifact try syntax is detected on buildbot
|
||||
'enable_unittest_sendchange': True,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'WINNT_6.1_x86-64_%(branch)s_Artifact_build',
|
||||
'platform': 'win64',
|
||||
'stage_platform': 'win64-debug',
|
||||
'publish_nightly_en_US_routes': False,
|
||||
'env': {
|
||||
'BINSCOPE': 'C:/Program Files (x86)/Microsoft/SDL BinScope/BinScope.exe',
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'HG_SHARE_BASE_DIR': 'C:/builds/hg-shared',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': MOZ_OBJDIR,
|
||||
'PATH': 'C:/mozilla-build/nsis-3.0b1;C:/mozilla-build/python27;'
|
||||
'C:/mozilla-build/buildbotve/scripts;'
|
||||
'%s' % (os.environ.get('path')),
|
||||
'PROPERTIES_FILE': os.path.join(os.getcwd(), 'buildprops.json'),
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
# debug-specific
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser/config/mozconfigs/win64/debug-artifact',
|
||||
'tooltool_manifest_src': "browser/config/tooltool-manifests/win64/releng.manifest",
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced between:
|
||||
# - taskcluster_firefox_win32_debug
|
||||
# - taskcluster_firefox_win32_opt
|
||||
# - taskcluster_firefox_win64_debug
|
||||
# - taskcluster_firefox_win64_opt
|
||||
|
||||
'default_actions': [
|
||||
'clone-tools',
|
||||
'build',
|
||||
'check-test',
|
||||
],
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
'make': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'python', 'virtualenv', 'virtualenv.py'
|
||||
)
|
||||
],
|
||||
'mach-build': [
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'msys', 'bin', 'bash.exe'),
|
||||
os.path.join(os.getcwd(), 'build', 'src', 'mach'),
|
||||
'--log-no-times', 'build', '-v'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [
|
||||
sys.executable,
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')
|
||||
],
|
||||
'tooltool_bootstrap': 'setup.sh',
|
||||
'enable_count_ctors': False,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'WINNT_5.2_%(branch)s',
|
||||
'platform': 'win32',
|
||||
'stage_platform': 'win32-debug',
|
||||
'debug_build': True,
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'BINSCOPE': os.path.join(
|
||||
os.environ['ProgramFiles(x86)'], 'Microsoft', 'SDL BinScope', 'BinScope.exe'
|
||||
),
|
||||
'HG_SHARE_BASE_DIR': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/10/Debuggers/x86/srcsrv/pdbstr.exe',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'MSYSTEM': 'MINGW32',
|
||||
},
|
||||
'upload_env': {
|
||||
'UPLOAD_HOST': 'localhost',
|
||||
'UPLOAD_PATH': os.path.join(os.getcwd(), 'public', 'build'),
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s\\breakpad\\win32\\minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s\\minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser\\config\\mozconfigs\\win32\\debug',
|
||||
'tooltool_manifest_src': 'browser\\config\\tooltool-manifests\\win32\\releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 32 bit keys/values please add them
|
||||
# below under the '32 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced between:
|
||||
# - taskcluster_firefox_win32_debug
|
||||
# - taskcluster_firefox_win32_opt
|
||||
# - taskcluster_firefox_win64_debug
|
||||
# - taskcluster_firefox_win64_opt
|
||||
|
||||
'default_actions': [
|
||||
'clone-tools',
|
||||
'build',
|
||||
'check-test',
|
||||
],
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
'make': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'python', 'virtualenv', 'virtualenv.py'
|
||||
)
|
||||
],
|
||||
'mach-build': [
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'msys', 'bin', 'bash.exe'),
|
||||
os.path.join(os.getcwd(), 'build', 'src', 'mach'),
|
||||
'--log-no-times', 'build', '-v'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [
|
||||
sys.executable,
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')
|
||||
],
|
||||
'tooltool_bootstrap': 'setup.sh',
|
||||
'enable_count_ctors': False,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 32 bit specific ######
|
||||
'base_name': 'WINNT_5.2_%(branch)s',
|
||||
'platform': 'win32',
|
||||
'stage_platform': 'win32',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'BINSCOPE': os.path.join(
|
||||
os.environ['ProgramFiles(x86)'], 'Microsoft', 'SDL BinScope', 'BinScope.exe'
|
||||
),
|
||||
'HG_SHARE_BASE_DIR': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'MOZBUILD_STATE_PATH': os.path.join(os.getcwd(), '.mozbuild'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/10/Debuggers/x86/srcsrv/pdbstr.exe',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
'MSYSTEM': 'MINGW32',
|
||||
},
|
||||
'upload_env': {
|
||||
'UPLOAD_HOST': 'localhost',
|
||||
'UPLOAD_PATH': os.path.join(os.getcwd(), 'public', 'build'),
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s\\breakpad\\win32\\minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s\\minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser\\config\\mozconfigs\\win32\\nightly',
|
||||
'tooltool_manifest_src': 'browser\\config\\tooltool-manifests\\win32\\releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,87 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 64 bit keys/values please add them
|
||||
# below under the '64 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced between:
|
||||
# - taskcluster_firefox_win32_debug
|
||||
# - taskcluster_firefox_win32_opt
|
||||
# - taskcluster_firefox_win64_debug
|
||||
# - taskcluster_firefox_win64_opt
|
||||
|
||||
'default_actions': [
|
||||
'clone-tools',
|
||||
'build',
|
||||
'check-test',
|
||||
],
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
'make': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'python', 'virtualenv', 'virtualenv.py'
|
||||
)
|
||||
],
|
||||
'mach-build': [
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'msys', 'bin', 'bash.exe'),
|
||||
os.path.join(os.getcwd(), 'build', 'src', 'mach'),
|
||||
'--log-no-times', 'build', '-v'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [
|
||||
sys.executable,
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')
|
||||
],
|
||||
'tooltool_bootstrap': 'setup.sh',
|
||||
'enable_count_ctors': False,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'WINNT_6.1_x86-64_%(branch)s',
|
||||
'platform': 'win64',
|
||||
'stage_platform': 'win64-debug',
|
||||
'debug_build': True,
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'HG_SHARE_BASE_DIR': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/10/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
'XPCOM_DEBUG_BREAK': 'stack-and-abort',
|
||||
'MSYSTEM': 'MINGW32',
|
||||
},
|
||||
'upload_env': {
|
||||
'UPLOAD_HOST': 'localhost',
|
||||
'UPLOAD_PATH': os.path.join(os.getcwd(), 'public', 'build'),
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s\\breakpad\\win64\\minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s\\minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser\\config\\mozconfigs\\win64\\debug',
|
||||
'tooltool_manifest_src': 'browser\\config\\tooltool-manifests\\win64\\releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
#########################################################################
|
||||
######## WINDOWS GENERIC CONFIG KEYS/VAlUES
|
||||
# if you are updating this with custom 64 bit keys/values please add them
|
||||
# below under the '64 bit specific' code block otherwise, update in this
|
||||
# code block and also make sure this is synced between:
|
||||
# - taskcluster_firefox_win32_debug
|
||||
# - taskcluster_firefox_win32_opt
|
||||
# - taskcluster_firefox_win64_debug
|
||||
# - taskcluster_firefox_win64_opt
|
||||
|
||||
'default_actions': [
|
||||
'clone-tools',
|
||||
'build',
|
||||
'check-test',
|
||||
],
|
||||
'exes': {
|
||||
'python2.7': sys.executable,
|
||||
'make': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'build', 'pymake', 'make.py'
|
||||
)
|
||||
],
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(
|
||||
os.getcwd(), 'build', 'src', 'python', 'virtualenv', 'virtualenv.py'
|
||||
)
|
||||
],
|
||||
'mach-build': [
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'msys', 'bin', 'bash.exe'),
|
||||
os.path.join(os.getcwd(), 'build', 'src', 'mach'),
|
||||
'--log-no-times', 'build', '-v'
|
||||
],
|
||||
},
|
||||
'app_ini_path': '%(obj_dir)s/dist/bin/application.ini',
|
||||
# decides whether we want to use moz_sign_cmd in env
|
||||
'enable_signing': True,
|
||||
'enable_ccache': False,
|
||||
'vcs_share_base': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'objdir': 'obj-firefox',
|
||||
'tooltool_script': [
|
||||
sys.executable,
|
||||
os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')
|
||||
],
|
||||
'tooltool_bootstrap': 'setup.sh',
|
||||
'enable_count_ctors': False,
|
||||
'max_build_output_timeout': 60 * 80,
|
||||
#########################################################################
|
||||
|
||||
|
||||
#########################################################################
|
||||
###### 64 bit specific ######
|
||||
'base_name': 'WINNT_6.1_x86-64_%(branch)s',
|
||||
'platform': 'win64',
|
||||
'stage_platform': 'win64',
|
||||
'publish_nightly_en_US_routes': True,
|
||||
'env': {
|
||||
'HG_SHARE_BASE_DIR': os.path.join('y:', os.sep, 'hg-shared'),
|
||||
'MOZ_AUTOMATION': '1',
|
||||
'MOZ_CRASHREPORTER_NO_REPORT': '1',
|
||||
'MOZ_OBJDIR': 'obj-firefox',
|
||||
'PDBSTR_PATH': '/c/Program Files (x86)/Windows Kits/10/Debuggers/x64/srcsrv/pdbstr.exe',
|
||||
'TINDERBOX_OUTPUT': '1',
|
||||
'TOOLTOOL_CACHE': '/c/builds/tooltool_cache',
|
||||
'TOOLTOOL_HOME': '/c/builds',
|
||||
'MSYSTEM': 'MINGW32',
|
||||
},
|
||||
'upload_env': {
|
||||
'UPLOAD_HOST': 'localhost',
|
||||
'UPLOAD_PATH': os.path.join(os.getcwd(), 'public', 'build'),
|
||||
},
|
||||
"check_test_env": {
|
||||
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s\\breakpad\\win64\\minidump_stackwalk.exe',
|
||||
'MINIDUMP_SAVE_PATH': '%(base_work_dir)s\\minidumps',
|
||||
},
|
||||
'enable_pymake': True,
|
||||
'src_mozconfig': 'browser\\config\\mozconfigs\\win64\\nightly',
|
||||
'tooltool_manifest_src': 'browser\\config\\tooltool-manifests\\win64\\releng.manifest',
|
||||
#########################################################################
|
||||
}
|
||||
49
testing/mozharness/configs/developer_config.py
Normal file
49
testing/mozharness/configs/developer_config.py
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
"""
|
||||
This config file can be appended to any other mozharness job
|
||||
running under treeherder. The purpose of this config is to
|
||||
override values that are specific to Release Engineering machines
|
||||
that can reach specific hosts within their network.
|
||||
In other words, this config allows you to run any job
|
||||
outside of the Release Engineering network
|
||||
|
||||
Using this config file should be accompanied with using
|
||||
--test-url and --installer-url where appropiate
|
||||
"""
|
||||
|
||||
import os
|
||||
LOCAL_WORKDIR = os.path.expanduser("~/.mozilla/releng")
|
||||
|
||||
config = {
|
||||
# Developer mode values
|
||||
"developer_mode": True,
|
||||
"local_workdir": LOCAL_WORKDIR,
|
||||
"replace_urls": [
|
||||
("http://pvtbuilds.pvt.build", "https://pvtbuilds"),
|
||||
],
|
||||
|
||||
# General local variable overwrite
|
||||
"exes": {
|
||||
"gittool.py": os.path.join(LOCAL_WORKDIR, "gittool.py"),
|
||||
},
|
||||
|
||||
# Pip
|
||||
"find_links": ["http://pypi.pub.build.mozilla.org/pub"],
|
||||
"pip_index": False,
|
||||
|
||||
# Talos related
|
||||
"python_webserver": True,
|
||||
"virtualenv_path": '%s/build/venv' % os.getcwd(),
|
||||
"preflight_run_cmd_suites": [],
|
||||
"postflight_run_cmd_suites": [],
|
||||
|
||||
# Tooltool related
|
||||
"download_tooltool": True,
|
||||
"tooltool_cache": os.path.join(LOCAL_WORKDIR, "builds/tooltool_cache"),
|
||||
"tooltool_cache_path": os.path.join(LOCAL_WORKDIR, "builds/tooltool_cache"),
|
||||
|
||||
# VCS tools
|
||||
"gittool.py": 'http://hg.mozilla.org/build/puppet/raw-file/faaf5abd792e/modules/packages/files/gittool.py',
|
||||
|
||||
# Android related
|
||||
"host_utils_url": "https://api.pub.build.mozilla.org/tooltool/sha512/372c89f9dccaf5ee3b9d35fd1cfeb089e1e5db3ff1c04e35aa3adc8800bc61a2ae10e321f37ae7bab20b56e60941f91bb003bcb22035902a73d70872e7bd3282",
|
||||
}
|
||||
3
testing/mozharness/configs/disable_signing.py
Normal file
3
testing/mozharness/configs/disable_signing.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
config = {
|
||||
'enable_signing': False,
|
||||
}
|
||||
19
testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py
Normal file
19
testing/mozharness/configs/firefox_ui_tests/qa_jenkins.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Default configuration as used by Mozmill CI (Jenkins)
|
||||
|
||||
|
||||
config = {
|
||||
# Tests run in mozmill-ci do not use RelEng infra
|
||||
'developer_mode': True,
|
||||
|
||||
# PIP
|
||||
'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
|
||||
'pip_index': False,
|
||||
|
||||
# mozcrash support
|
||||
'download_minidump_stackwalk': True,
|
||||
'download_symbols': 'ondemand',
|
||||
'download_tooltool': True,
|
||||
|
||||
# Disable proxxy because it isn't present in the QA environment.
|
||||
'proxxy': {},
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Default configuration as used by Release Engineering for testing release/beta builds
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
import mozharness
|
||||
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
|
||||
config = {
|
||||
# General local variable overwrite
|
||||
'exes': {
|
||||
'gittool.py': [
|
||||
# Bug 1227079 - Python executable eeded to get it executed on Windows
|
||||
sys.executable,
|
||||
os.path.join(external_tools_path, 'gittool.py')
|
||||
],
|
||||
},
|
||||
|
||||
# PIP
|
||||
'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
|
||||
'pip_index': False,
|
||||
|
||||
# mozcrash support
|
||||
'download_minidump_stackwalk': True,
|
||||
'download_symbols': 'ondemand',
|
||||
'download_tooltool': True,
|
||||
}
|
||||
11
testing/mozharness/configs/firefox_ui_tests/taskcluster.py
Normal file
11
testing/mozharness/configs/firefox_ui_tests/taskcluster.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Config file for firefox ui tests run via TaskCluster.
|
||||
|
||||
config = {
|
||||
"find_links": [
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
|
||||
"pip_index": False,
|
||||
|
||||
"tooltool_cache": "/builds/tooltool_cache",
|
||||
}
|
||||
4
testing/mozharness/configs/hazards/build_browser.py
Normal file
4
testing/mozharness/configs/hazards/build_browser.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
config = {
|
||||
'build_command': "build.browser",
|
||||
'expect_file': "expect.browser.json",
|
||||
}
|
||||
4
testing/mozharness/configs/hazards/build_shell.py
Normal file
4
testing/mozharness/configs/hazards/build_shell.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
config = {
|
||||
'build_command': "build.shell",
|
||||
'expect_file': "expect.shell.json",
|
||||
}
|
||||
104
testing/mozharness/configs/hazards/common.py
Normal file
104
testing/mozharness/configs/hazards/common.py
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
import os
|
||||
|
||||
HG_SHARE_BASE_DIR = "/builds/hg-shared"
|
||||
|
||||
PYTHON_DIR = "/tools/python27"
|
||||
SRCDIR = "source"
|
||||
|
||||
config = {
|
||||
"platform": "linux64",
|
||||
"build_type": "br-haz",
|
||||
"log_name": "hazards",
|
||||
"shell-objdir": "obj-opt-js",
|
||||
"analysis-dir": "analysis",
|
||||
"analysis-objdir": "obj-analyzed",
|
||||
"srcdir": SRCDIR,
|
||||
"analysis-scriptdir": "js/src/devtools/rootAnalysis",
|
||||
|
||||
# These paths are relative to the tooltool checkout location
|
||||
"sixgill": "sixgill/usr/libexec/sixgill",
|
||||
"sixgill_bin": "sixgill/usr/bin",
|
||||
|
||||
"python": "python",
|
||||
|
||||
"exes": {
|
||||
'gittool.py': '%(abs_tools_dir)s/buildfarm/utils/gittool.py',
|
||||
'tooltool.py': '/tools/tooltool.py',
|
||||
"virtualenv": [PYTHON_DIR + "/bin/python", "/tools/misc-python/virtualenv.py"],
|
||||
},
|
||||
|
||||
"force_clobber": True,
|
||||
'vcs_share_base': HG_SHARE_BASE_DIR,
|
||||
|
||||
"repos": [{
|
||||
"repo": "https://hg.mozilla.org/build/tools",
|
||||
"branch": "default",
|
||||
"dest": "tools"
|
||||
}],
|
||||
|
||||
"upload_remote_baseuri": 'https://ftp-ssl.mozilla.org/',
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file": os.path.join(os.getcwd(), "oauth.txt"),
|
||||
|
||||
"virtualenv_path": '%s/venv' % os.getcwd(),
|
||||
'tools_dir': "/tools",
|
||||
'compiler_manifest': "build/gcc.manifest",
|
||||
'b2g_compiler_manifest': "build/gcc-b2g.manifest",
|
||||
'sixgill_manifest': "build/sixgill.manifest",
|
||||
|
||||
# Mock.
|
||||
"mock_packages": [
|
||||
"autoconf213", "mozilla-python27-mercurial", "ccache",
|
||||
"zip", "zlib-devel", "glibc-static",
|
||||
"openssh-clients", "mpfr", "wget", "rsync",
|
||||
|
||||
# For building the JS shell
|
||||
"gmp-devel", "nspr", "nspr-devel",
|
||||
|
||||
# For building the browser
|
||||
"dbus-devel", "dbus-glib-devel", "hal-devel",
|
||||
"libICE-devel", "libIDL-devel",
|
||||
|
||||
# For mach resource-usage
|
||||
"python-psutil",
|
||||
|
||||
'zip', 'git',
|
||||
'libstdc++-static', 'perl-Test-Simple', 'perl-Config-General',
|
||||
'gtk2-devel', 'libnotify-devel', 'yasm',
|
||||
'alsa-lib-devel', 'libcurl-devel',
|
||||
'wireless-tools-devel', 'libX11-devel',
|
||||
'libXt-devel', 'mesa-libGL-devel',
|
||||
'gnome-vfs2-devel', 'GConf2-devel', 'wget',
|
||||
'mpfr', # required for system compiler
|
||||
'xorg-x11-font*', # fonts required for PGO
|
||||
'imake', # required for makedepend!?!
|
||||
'pulseaudio-libs-devel',
|
||||
'freetype-2.3.11-6.el6_1.8.x86_64',
|
||||
'freetype-devel-2.3.11-6.el6_1.8.x86_64',
|
||||
'gstreamer-devel', 'gstreamer-plugins-base-devel',
|
||||
],
|
||||
"mock_files": [
|
||||
("/home/cltbld/.ssh", "/home/mock_mozilla/.ssh"),
|
||||
('/home/cltbld/.hgrc', '/builds/.hgrc'),
|
||||
('/builds/relengapi.tok', '/builds/relengapi.tok'),
|
||||
("/tools/tooltool.py", "/tools/tooltool.py"),
|
||||
('/usr/local/lib/hgext', '/usr/local/lib/hgext'),
|
||||
],
|
||||
"env_replacements": {
|
||||
"pythondir": PYTHON_DIR,
|
||||
"gccdir": "%(abs_work_dir)s/gcc",
|
||||
"sixgilldir": "%(abs_work_dir)s/sixgill",
|
||||
},
|
||||
"partial_env": {
|
||||
"PATH": "%(pythondir)s/bin:%(gccdir)s/bin:%(PATH)s",
|
||||
"LD_LIBRARY_PATH": "%(sixgilldir)s/usr/lib64",
|
||||
|
||||
# Suppress the mercurial-setup check. When running in automation, this
|
||||
# is redundant with MOZ_AUTOMATION, but a local developer-mode build
|
||||
# will have the mach state directory set to a nonstandard location and
|
||||
# therefore will always claim that mercurial-setup has not been run.
|
||||
"I_PREFER_A_SUBOPTIMAL_MERCURIAL_EXPERIENCE": "1",
|
||||
},
|
||||
}
|
||||
56
testing/mozharness/configs/marionette/prod_config.py
Normal file
56
testing/mozharness/configs/marionette/prod_config.py
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
# This is a template config file for marionette production.
|
||||
import os
|
||||
|
||||
HG_SHARE_BASE_DIR = "/builds/hg-shared"
|
||||
|
||||
config = {
|
||||
# marionette options
|
||||
"marionette_address": "localhost:2828",
|
||||
"test_manifest": "unit-tests.ini",
|
||||
|
||||
"vcs_share_base": HG_SHARE_BASE_DIR,
|
||||
"exes": {
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
|
||||
"find_links": [
|
||||
"http://pypi.pvt.build.mozilla.org/pub",
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"download_symbols": "ondemand",
|
||||
"download_minidump_stackwalk": True,
|
||||
"tooltool_cache": "/builds/tooltool_cache",
|
||||
"suite_definitions": {
|
||||
"marionette_desktop": {
|
||||
"options": [
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--log-html=%(html_report_file)s",
|
||||
"--binary=%(binary)s",
|
||||
"--address=%(address)s",
|
||||
"--symbols-path=%(symbols_path)s"
|
||||
],
|
||||
"run_filename": "",
|
||||
"testsdir": ""
|
||||
}
|
||||
},
|
||||
"structured_output": True,
|
||||
}
|
||||
29
testing/mozharness/configs/marionette/test_config.py
Normal file
29
testing/mozharness/configs/marionette/test_config.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# This is a template config file for marionette test.
|
||||
|
||||
config = {
|
||||
# marionette options
|
||||
"marionette_address": "localhost:2828",
|
||||
"test_manifest": "unit-tests.ini",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"suite_definitions": {
|
||||
"marionette_desktop": {
|
||||
"options": [
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--log-html=%(html_report_file)s",
|
||||
"--binary=%(binary)s",
|
||||
"--address=%(address)s",
|
||||
"--symbols-path=%(symbols_path)s"
|
||||
],
|
||||
"run_filename": "",
|
||||
"testsdir": ""
|
||||
},
|
||||
},
|
||||
}
|
||||
57
testing/mozharness/configs/marionette/windows_config.py
Normal file
57
testing/mozharness/configs/marionette/windows_config.py
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# This is a template config file for marionette production on Windows.
|
||||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
# marionette options
|
||||
"marionette_address": "localhost:2828",
|
||||
"test_manifest": "unit-tests.ini",
|
||||
|
||||
"virtualenv_python_dll": 'c:/mozilla-build/python27/python27.dll',
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': 'c:/mozilla-build/python27/python',
|
||||
'virtualenv': ['c:/mozilla-build/python27/python', 'c:/mozilla-build/buildbotve/virtualenv.py'],
|
||||
'hg': 'c:/mozilla-build/hg/hg',
|
||||
'mozinstall': ['%s/build/venv/scripts/python' % os.getcwd(),
|
||||
'%s/build/venv/scripts/mozinstall-script.py' % os.getcwd()],
|
||||
'tooltool.py': [sys.executable, 'C:/mozilla-build/tooltool.py'],
|
||||
},
|
||||
|
||||
"find_links": [
|
||||
"http://pypi.pvt.build.mozilla.org/pub",
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
"suite_definitions": {
|
||||
"marionette_desktop": {
|
||||
"options": [
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--log-html=%(html_report_file)s",
|
||||
"--binary=%(binary)s",
|
||||
"--address=%(address)s",
|
||||
"--symbols-path=%(symbols_path)s"
|
||||
],
|
||||
"run_filename": "",
|
||||
"testsdir": ""
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
# This is a template config file for marionette production on Windows.
|
||||
import os
|
||||
import sys
|
||||
|
||||
config = {
|
||||
# marionette options
|
||||
"marionette_address": "localhost:2828",
|
||||
"test_manifest": "unit-tests.ini",
|
||||
|
||||
"virtualenv_python_dll": os.path.join(os.path.dirname(sys.executable), 'python27.dll'),
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': sys.executable,
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(os.path.dirname(sys.executable), 'Lib', 'site-packages', 'virtualenv.py')
|
||||
],
|
||||
'mozinstall': ['build/venv/scripts/python', 'build/venv/scripts/mozinstall-script.py'],
|
||||
'tooltool.py': [sys.executable, os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')],
|
||||
'hg': os.path.join(os.environ['PROGRAMFILES'], 'Mercurial', 'hg')
|
||||
},
|
||||
|
||||
"proxxy": {},
|
||||
"find_links": [
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-tests',
|
||||
],
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : 'C:/builds/oauth.txt',
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
"suite_definitions": {
|
||||
"marionette_desktop": {
|
||||
"options": [
|
||||
"--log-raw=%(raw_log_file)s",
|
||||
"--log-errorsummary=%(error_summary_file)s",
|
||||
"--log-html=%(html_report_file)s",
|
||||
"--binary=%(binary)s",
|
||||
"--address=%(address)s",
|
||||
"--symbols-path=%(symbols_path)s"
|
||||
],
|
||||
"run_filename": "",
|
||||
"testsdir": ""
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
import os
|
||||
import mozharness
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
config = {
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
|
||||
"find_links": [
|
||||
"http://pypi.pvt.build.mozilla.org/pub",
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-media-tests',
|
||||
],
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
|
||||
"suite_definitions": {
|
||||
"media-tests": {
|
||||
"options": [],
|
||||
},
|
||||
"media-youtube-tests": {
|
||||
"options": [
|
||||
"%(test_manifest)s"
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
import os
|
||||
import sys
|
||||
import mozharness
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
config = {
|
||||
"virtualenv_python_dll": 'c:/mozilla-build/python27/python27.dll',
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': 'c:/mozilla-build/python27/python',
|
||||
'virtualenv': ['c:/mozilla-build/python27/python', 'c:/mozilla-build/buildbotve/virtualenv.py'],
|
||||
'hg': 'c:/mozilla-build/hg/hg',
|
||||
'mozinstall': ['%s/build/venv/scripts/python' % os.getcwd(),
|
||||
'%s/build/venv/scripts/mozinstall-script.py' % os.getcwd()],
|
||||
'tooltool.py': [sys.executable, 'C:/mozilla-build/tooltool.py'],
|
||||
},
|
||||
|
||||
"find_links": [
|
||||
"http://pypi.pvt.build.mozilla.org/pub",
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"buildbot_json_path": "buildprops.json",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'read-buildbot-config',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-media-tests',
|
||||
],
|
||||
"default_blob_upload_servers": [
|
||||
"https://blobupload.elasticbeanstalk.com",
|
||||
],
|
||||
"blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"),
|
||||
"in_tree_config": "config/mozharness/marionette.py",
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
|
||||
"suite_definitions": {
|
||||
"media-tests": {
|
||||
"options": [],
|
||||
},
|
||||
"media-youtube-tests": {
|
||||
"options": [
|
||||
"%(test_manifest)s"
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
48
testing/mozharness/configs/mediatests/jenkins_config.py
Normal file
48
testing/mozharness/configs/mediatests/jenkins_config.py
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# Default configuration as used by Mozmill CI (Jenkins)
|
||||
|
||||
import os
|
||||
import platform
|
||||
import sys
|
||||
|
||||
import mozharness
|
||||
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
config = {
|
||||
# PIP
|
||||
'find_links': ['http://pypi.pub.build.mozilla.org/pub'],
|
||||
'pip_index': False,
|
||||
|
||||
# mozcrash support
|
||||
'download_minidump_stackwalk': True,
|
||||
'download_symbols': 'ondemand',
|
||||
'download_tooltool': True,
|
||||
|
||||
# Default test suite
|
||||
'test_suite': 'media-tests',
|
||||
|
||||
'suite_definitions': {
|
||||
'media-tests': {
|
||||
'options': [],
|
||||
},
|
||||
'media-youtube-tests': {
|
||||
'options': [
|
||||
'%(test_manifest)s'
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
'default_actions': [
|
||||
'clobber',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-media-tests',
|
||||
],
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
import os
|
||||
import mozharness
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
config = {
|
||||
# Python env
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': '/tools/buildbot/bin/python',
|
||||
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
|
||||
'tooltool.py': "/tools/tooltool.py",
|
||||
},
|
||||
|
||||
# PIP
|
||||
"find_links": [
|
||||
"http://pypi.pvt.build.mozilla.org/pub",
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
#mozcrash support
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-media-tests',
|
||||
],
|
||||
|
||||
"suite_definitions": {
|
||||
"media-tests": {
|
||||
"options": [],
|
||||
},
|
||||
"media-youtube-tests": {
|
||||
"options": [
|
||||
"%(test_manifest)s"
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
import os
|
||||
import sys
|
||||
import mozharness
|
||||
|
||||
external_tools_path = os.path.join(
|
||||
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
|
||||
'external_tools',
|
||||
)
|
||||
|
||||
config = {
|
||||
"virtualenv_python_dll": os.path.join(os.path.dirname(sys.executable), 'python27.dll'),
|
||||
"virtualenv_path": 'venv',
|
||||
"exes": {
|
||||
'python': sys.executable,
|
||||
'virtualenv': [
|
||||
sys.executable,
|
||||
os.path.join(os.path.dirname(sys.executable), 'Lib', 'site-packages', 'virtualenv.py')
|
||||
],
|
||||
'mozinstall': ['build/venv/scripts/python', 'build/venv/scripts/mozinstall-script.py'],
|
||||
'tooltool.py': [sys.executable, os.path.join(os.environ['MOZILLABUILD'], 'tooltool.py')],
|
||||
'hg': os.path.join(os.environ['PROGRAMFILES'], 'Mercurial', 'hg')
|
||||
},
|
||||
"proxxy": {},
|
||||
"find_links": [
|
||||
"http://pypi.pub.build.mozilla.org/pub",
|
||||
],
|
||||
"pip_index": False,
|
||||
|
||||
"download_minidump_stackwalk": True,
|
||||
"download_symbols": "ondemand",
|
||||
|
||||
"default_actions": [
|
||||
'clobber',
|
||||
'download-and-extract',
|
||||
'create-virtualenv',
|
||||
'install',
|
||||
'run-media-tests',
|
||||
],
|
||||
|
||||
"suite_definitions": {
|
||||
"media-tests": {
|
||||
"options": [],
|
||||
},
|
||||
"media-youtube-tests": {
|
||||
"options": [
|
||||
"%(test_manifest)s"
|
||||
],
|
||||
},
|
||||
},
|
||||
}
|
||||
83
testing/mozharness/configs/merge_day/aurora_to_beta.py
Normal file
83
testing/mozharness/configs/merge_day/aurora_to_beta.py
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
|
||||
config = {
|
||||
"log_name": "aurora_to_beta",
|
||||
"version_files": [
|
||||
{"file": "browser/config/version.txt", "suffix": ""},
|
||||
{"file": "browser/config/version_display.txt", "suffix": "b1"},
|
||||
{"file": "config/milestone.txt", "suffix": ""},
|
||||
],
|
||||
"replacements": [
|
||||
# File, from, to
|
||||
("{}/{}".format(d, f),
|
||||
"ac_add_options --with-branding=mobile/android/branding/aurora",
|
||||
"ac_add_options --with-branding=mobile/android/branding/beta")
|
||||
for d in ["mobile/android/config/mozconfigs/android-api-15/",
|
||||
"mobile/android/config/mozconfigs/android-x86/"]
|
||||
for f in ["debug", "nightly", "l10n-nightly"]
|
||||
] + [
|
||||
# File, from, to
|
||||
("{}/{}".format(d, f),
|
||||
"ac_add_options --with-branding=browser/branding/aurora",
|
||||
"ac_add_options --with-branding=browser/branding/nightly")
|
||||
for d in ["browser/config/mozconfigs/linux32",
|
||||
"browser/config/mozconfigs/linux64",
|
||||
"browser/config/mozconfigs/win32",
|
||||
"browser/config/mozconfigs/win64",
|
||||
"browser/config/mozconfigs/macosx64"]
|
||||
for f in ["debug", "nightly"]
|
||||
] + [
|
||||
# File, from, to
|
||||
(f, "ac_add_options --with-branding=browser/branding/aurora",
|
||||
"ac_add_options --enable-official-branding")
|
||||
for f in ["browser/config/mozconfigs/linux32/l10n-mozconfig",
|
||||
"browser/config/mozconfigs/linux64/l10n-mozconfig",
|
||||
"browser/config/mozconfigs/win32/l10n-mozconfig",
|
||||
"browser/config/mozconfigs/win64/l10n-mozconfig",
|
||||
"browser/config/mozconfigs/macosx-universal/l10n-mozconfig",
|
||||
"browser/config/mozconfigs/macosx64/l10n-mozconfig"]
|
||||
] + [
|
||||
("browser/config/mozconfigs/macosx-universal/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/aurora",
|
||||
"ac_add_options --with-branding=browser/branding/nightly"),
|
||||
("browser/confvars.sh",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-aurora",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-beta,firefox-mozilla-release"),
|
||||
("browser/confvars.sh",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-aurora",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-beta"),
|
||||
("browser/config/mozconfigs/whitelist",
|
||||
"ac_add_options --with-branding=browser/branding/aurora",
|
||||
"ac_add_options --with-branding=browser/branding/nightly"),
|
||||
] + [
|
||||
("build/mozconfig.common",
|
||||
"MOZ_REQUIRE_SIGNING=${MOZ_REQUIRE_SIGNING-0}",
|
||||
"MOZ_REQUIRE_SIGNING=${MOZ_REQUIRE_SIGNING-1}"),
|
||||
("build/mozconfig.common",
|
||||
"# Disable enforcing that add-ons are signed by the trusted root",
|
||||
"# Enable enforcing that add-ons are signed by the trusted root")
|
||||
],
|
||||
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
# "hg_share_base": None,
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"from_repo_url": "ssh://hg.mozilla.org/releases/mozilla-aurora",
|
||||
"to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-beta",
|
||||
|
||||
"base_tag": "FIREFOX_BETA_%(major_version)s_BASE",
|
||||
"end_tag": "FIREFOX_BETA_%(major_version)s_END",
|
||||
|
||||
"migration_behavior": "aurora_to_beta",
|
||||
|
||||
"virtualenv_modules": [
|
||||
"requests==2.8.1",
|
||||
],
|
||||
|
||||
"post_merge_builders": [],
|
||||
"post_merge_nightly_branches": [
|
||||
# No nightlies on mozilla-beta
|
||||
],
|
||||
}
|
||||
53
testing/mozharness/configs/merge_day/beta_to_release.py
Normal file
53
testing/mozharness/configs/merge_day/beta_to_release.py
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
|
||||
config = {
|
||||
"log_name": "beta_to_release",
|
||||
"copy_files": [
|
||||
{
|
||||
"src": "browser/config/version.txt",
|
||||
"dst": "browser/config/version_display.txt",
|
||||
},
|
||||
],
|
||||
"replacements": [
|
||||
# File, from, to
|
||||
("{}/{}".format(d, f),
|
||||
"ac_add_options --with-branding=mobile/android/branding/beta",
|
||||
"ac_add_options --with-branding=mobile/android/branding/official")
|
||||
for d in ["mobile/android/config/mozconfigs/android-api-15/",
|
||||
"mobile/android/config/mozconfigs/android-x86/"]
|
||||
for f in ["debug", "nightly", "l10n-nightly", "l10n-release", "release"]
|
||||
] + [
|
||||
# File, from, to
|
||||
("browser/confvars.sh",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-beta,firefox-mozilla-release",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-release"),
|
||||
("browser/confvars.sh",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-beta",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-release"),
|
||||
],
|
||||
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
# "hg_share_base": None,
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"from_repo_url": "ssh://hg.mozilla.org/releases/mozilla-beta",
|
||||
"to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-release",
|
||||
|
||||
"base_tag": "FIREFOX_RELEASE_%(major_version)s_BASE",
|
||||
"end_tag": "FIREFOX_RELEASE_%(major_version)s_END",
|
||||
|
||||
"migration_behavior": "beta_to_release",
|
||||
"require_remove_locales": False,
|
||||
"pull_all_branches": True,
|
||||
|
||||
"virtualenv_modules": [
|
||||
"requests==2.8.1",
|
||||
],
|
||||
|
||||
"post_merge_builders": [],
|
||||
"post_merge_nightly_branches": [
|
||||
# No nightlies on mozilla-release
|
||||
],
|
||||
}
|
||||
24
testing/mozharness/configs/merge_day/bump_esr.py
Normal file
24
testing/mozharness/configs/merge_day/bump_esr.py
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
config = {
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
"log_name": "bump_esr",
|
||||
"version_files": [
|
||||
{"file": "browser/config/version.txt", "suffix": ""},
|
||||
{"file": "browser/config/version_display.txt", "suffix": ""},
|
||||
{"file": "config/milestone.txt", "suffix": ""},
|
||||
],
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-esr52",
|
||||
|
||||
"migration_behavior": "bump_second_digit",
|
||||
"require_remove_locales": False,
|
||||
"requires_head_merge": False,
|
||||
"default_actions": [
|
||||
"clean-repos",
|
||||
"pull",
|
||||
"bump_second_digit"
|
||||
],
|
||||
}
|
||||
100
testing/mozharness/configs/merge_day/central_to_aurora.py
Normal file
100
testing/mozharness/configs/merge_day/central_to_aurora.py
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
config = {
|
||||
"log_name": "central_to_aurora",
|
||||
"version_files": [
|
||||
{"file": "browser/config/version.txt", "suffix": ""},
|
||||
{"file": "browser/config/version_display.txt", "suffix": ""},
|
||||
{"file": "config/milestone.txt", "suffix": ""},
|
||||
],
|
||||
"replacements": [
|
||||
# File, from, to
|
||||
("{}/{}".format(d, f),
|
||||
"ac_add_options --with-branding=mobile/android/branding/nightly",
|
||||
"ac_add_options --with-branding=mobile/android/branding/aurora")
|
||||
for d in ["mobile/android/config/mozconfigs/android-api-15/",
|
||||
"mobile/android/config/mozconfigs/android-x86/"]
|
||||
for f in ["debug", "nightly", "l10n-nightly"]
|
||||
] + [
|
||||
# File, from, to
|
||||
("{}/{}".format(d, f),
|
||||
"ac_add_options --with-branding=browser/branding/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/aurora")
|
||||
for d in ["browser/config/mozconfigs/linux32",
|
||||
"browser/config/mozconfigs/linux64",
|
||||
"browser/config/mozconfigs/win32",
|
||||
"browser/config/mozconfigs/win64",
|
||||
"browser/config/mozconfigs/macosx64"]
|
||||
for f in ["debug", "nightly", "l10n-mozconfig"]
|
||||
] + [
|
||||
# File, from, to
|
||||
("{}/l10n-nightly".format(d),
|
||||
"ac_add_options --with-l10n-base=../../l10n-central",
|
||||
"ac_add_options --with-l10n-base=..")
|
||||
for d in ["mobile/android/config/mozconfigs/android-api-15/",
|
||||
"mobile/android/config/mozconfigs/android-x86/"]
|
||||
] + [
|
||||
# File, from, to
|
||||
(f, "ac_add_options --enable-profiling", "") for f in
|
||||
["mobile/android/config/mozconfigs/android-api-15/nightly",
|
||||
"mobile/android/config/mozconfigs/android-x86/nightly",
|
||||
"browser/config/mozconfigs/linux32/nightly",
|
||||
"browser/config/mozconfigs/linux64/nightly",
|
||||
"browser/config/mozconfigs/macosx-universal/nightly",
|
||||
"browser/config/mozconfigs/win32/nightly",
|
||||
"browser/config/mozconfigs/win64/nightly"]
|
||||
] + [
|
||||
# File, from, to
|
||||
("browser/confvars.sh",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-central",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-aurora"),
|
||||
("browser/confvars.sh",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-central",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-aurora"),
|
||||
("browser/config/mozconfigs/macosx-universal/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/aurora"),
|
||||
("browser/config/mozconfigs/macosx-universal/l10n-mozconfig",
|
||||
"ac_add_options --with-branding=browser/branding/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/aurora"),
|
||||
("browser/config/mozconfigs/whitelist",
|
||||
"ac_add_options --with-branding=browser/branding/nightly",
|
||||
"ac_add_options --with-branding=browser/branding/aurora"),
|
||||
],
|
||||
"locale_files": [
|
||||
"browser/locales/shipped-locales",
|
||||
"browser/locales/all-locales",
|
||||
"mobile/android/locales/maemo-locales",
|
||||
"mobile/android/locales/all-locales"
|
||||
],
|
||||
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
# "hg_share_base": None,
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"from_repo_url": "ssh://hg.mozilla.org/mozilla-central",
|
||||
"to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-aurora",
|
||||
|
||||
"base_tag": "FIREFOX_AURORA_%(major_version)s_BASE",
|
||||
"end_tag": "FIREFOX_AURORA_%(major_version)s_END",
|
||||
|
||||
"migration_behavior": "central_to_aurora",
|
||||
|
||||
"balrog_rules_to_lock": [
|
||||
8, # Fennec aurora channel
|
||||
10, # Firefox aurora channel
|
||||
18, # MetroFirefox aurora channel
|
||||
],
|
||||
"balrog_credentials_file": "oauth.txt",
|
||||
|
||||
"virtualenv_modules": [
|
||||
"requests==2.8.1",
|
||||
],
|
||||
|
||||
"post_merge_builders": [],
|
||||
"post_merge_nightly_branches": [
|
||||
"mozilla-central",
|
||||
"mozilla-aurora",
|
||||
],
|
||||
}
|
||||
54
testing/mozharness/configs/merge_day/release_to_esr.py
Normal file
54
testing/mozharness/configs/merge_day/release_to_esr.py
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
NEW_ESR_REPO = "ssh://hg.mozilla.org/releases/mozilla-esr52"
|
||||
OLD_ESR_REPO = "https://hg.mozilla.org/releases/mozilla-esr45"
|
||||
OLD_ESR_CHANGESET = "d2d75f526882"
|
||||
|
||||
config = {
|
||||
"log_name": "relese_to_esr",
|
||||
"version_files": [
|
||||
{"file": "browser/config/version.txt", "suffix": ""},
|
||||
{"file": "browser/config/version_display.txt", "suffix": ""},
|
||||
{"file": "config/milestone.txt", "suffix": ""},
|
||||
],
|
||||
"replacements": [
|
||||
# File, from, to
|
||||
("browser/confvars.sh",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-release",
|
||||
"ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-esr"),
|
||||
("browser/confvars.sh",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-release",
|
||||
"MAR_CHANNEL_ID=firefox-mozilla-esr"),
|
||||
("build/mozconfig.common",
|
||||
"# Enable checking that add-ons are signed by the trusted root",
|
||||
"# Disable checking that add-ons are signed by the trusted root"),
|
||||
("build/mozconfig.common",
|
||||
"MOZ_ADDON_SIGNING=${MOZ_ADDON_SIGNING-1}",
|
||||
"MOZ_ADDON_SIGNING=${MOZ_ADDON_SIGNING-0}"),
|
||||
("build/mozconfig.common",
|
||||
"# Enable enforcing that add-ons are signed by the trusted root",
|
||||
"# Disable enforcing that add-ons are signed by the trusted root"),
|
||||
("build/mozconfig.common",
|
||||
"MOZ_REQUIRE_SIGNING=${MOZ_REQUIRE_SIGNING-1}",
|
||||
"MOZ_REQUIRE_SIGNING=${MOZ_REQUIRE_SIGNING-0}"),
|
||||
],
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
# "hg_share_base": None,
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"from_repo_url": "ssh://hg.mozilla.org/releases/mozilla-release",
|
||||
"to_repo_url": NEW_ESR_REPO,
|
||||
|
||||
"base_tag": "FIREFOX_ESR_%(major_version)s_BASE",
|
||||
"end_tag": "FIREFOX_ESR_%(major_version)s_END",
|
||||
|
||||
"migration_behavior": "release_to_esr",
|
||||
"require_remove_locales": False,
|
||||
"transplant_patches": [
|
||||
{"repo": OLD_ESR_REPO,
|
||||
"changeset": OLD_ESR_CHANGESET},
|
||||
],
|
||||
"requires_head_merge": False,
|
||||
"pull_all_branches": True,
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# Use this script in conjunction with aurora_to_beta.py.
|
||||
# mozharness/scripts/merge_day/gecko_migration.py -c \
|
||||
# mozharness/configs/merge_day/aurora_to_beta.py -c
|
||||
# mozharness/configs/merge_day/staging_beta_migration.py ...
|
||||
import os
|
||||
|
||||
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
||||
|
||||
config = {
|
||||
"log_name": "staging_beta",
|
||||
|
||||
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
||||
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
||||
"tools_repo_branch": "default",
|
||||
"from_repo_url": "ssh://hg.mozilla.org/releases/mozilla-aurora",
|
||||
"to_repo_url": "ssh://hg.mozilla.org/users/stage-ffxbld/mozilla-beta",
|
||||
|
||||
"base_tag": "FIREFOX_BETA_%(major_version)s_BASE",
|
||||
"end_tag": "FIREFOX_BETA_%(major_version)s_END",
|
||||
|
||||
"migration_behavior": "aurora_to_beta",
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"work_dir": "build",
|
||||
"locales_file": "src/mobile/android/locales/maemo-locales",
|
||||
"mozilla_dir": "src"
|
||||
}
|
||||
28
testing/mozharness/configs/multi_locale/ash_android-x86.json
Normal file
28
testing/mozharness/configs/multi_locale/ash_android-x86.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"work_dir": ".",
|
||||
"log_name": "multilocale",
|
||||
"objdir": "obj-firefox",
|
||||
"locales_file": "build/mobile/android/locales/maemo-locales",
|
||||
"locales_dir": "mobile/android/locales",
|
||||
"ignore_locales": ["en-US", "multi"],
|
||||
"repos": [{
|
||||
"repo": "https://hg.mozilla.org/projects/ash",
|
||||
"branch": "default",
|
||||
"dest": "build"
|
||||
},{
|
||||
"repo": "https://hg.mozilla.org/build/buildbot-configs",
|
||||
"branch": "production",
|
||||
"dest": "build/configs"
|
||||
},{
|
||||
"repo": "https://hg.mozilla.org/build/tools",
|
||||
"branch": "default",
|
||||
"dest": "tools"
|
||||
}],
|
||||
"vcs_share_base": "/builds/hg-shared",
|
||||
"hg_l10n_base": "https://hg.mozilla.org/l10n-central",
|
||||
"hg_l10n_tag": "default",
|
||||
"l10n_dir": "l10n-central",
|
||||
"merge_locales": true,
|
||||
"mozilla_dir": "build",
|
||||
"mozconfig": "build/mobile/android/config/mozconfigs/android-x86/nightly"
|
||||
}
|
||||
27
testing/mozharness/configs/multi_locale/ash_android.json
Normal file
27
testing/mozharness/configs/multi_locale/ash_android.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"work_dir": ".",
|
||||
"log_name": "multilocale",
|
||||
"objdir": "obj-firefox",
|
||||
"locales_file": "build/mobile/android/locales/maemo-locales",
|
||||
"locales_dir": "mobile/android/locales",
|
||||
"ignore_locales": ["en-US", "multi"],
|
||||
"repos": [{
|
||||
"repo": "https://hg.mozilla.org/projects/ash",
|
||||
"branch": "default",
|
||||
"dest": "build"
|
||||
},{
|
||||
"repo": "https://hg.mozilla.org/build/buildbot-configs",
|
||||
"branch": "production",
|
||||
"dest": "build/configs"
|
||||
},{
|
||||
"repo": "https://hg.mozilla.org/build/tools",
|
||||
"branch": "default",
|
||||
"dest": "tools"
|
||||
}],
|
||||
"vcs_share_base": "/builds/hg-shared",
|
||||
"hg_l10n_base": "https://hg.mozilla.org/l10n-central",
|
||||
"hg_l10n_tag": "default",
|
||||
"l10n_dir": "l10n-central",
|
||||
"merge_locales": true,
|
||||
"mozilla_dir": "build"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue