зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1299702 - Add win64 artifact configs r=chmanchester
MozReview-Commit-ID: BtKTGX6Ahtz --HG-- extra : rebase_source : 2e1a0fa322515ecaeef582fb653a21bda10d8c1e
This commit is contained in:
Родитель
346ac09671
Коммит
22a1e37da6
|
@ -0,0 +1,10 @@
|
|||
MOZ_AUTOMATION_BUILD_SYMBOLS=0
|
||||
MOZ_AUTOMATION_L10N_CHECK=0
|
||||
|
||||
. "$topsrcdir/browser/config/mozconfigs/win64/common-win64"
|
||||
. "$topsrcdir/browser/config/mozconfigs/common"
|
||||
. "$topsrcdir/build/mozconfig.win-common"
|
||||
. "$topsrcdir/build/win64/mozconfig.vs-latest"
|
||||
. "$topsrcdir/build/mozconfig.common.override"
|
||||
|
||||
ac_add_options --enable-artifact-builds
|
|
@ -0,0 +1,77 @@
|
|||
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',
|
||||
],
|
||||
"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,
|
||||
'enable_unittest_sendchange': False,
|
||||
'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",
|
||||
#########################################################################
|
||||
}
|
Загрузка…
Ссылка в новой задаче