summaryrefslogtreecommitdiffstats
path: root/testing/mozharness/configs/builds/releng_sub_mac_configs/64_add-on-devel.py
blob: d54c4d3a6f95a2b121f96e7e0a9754c107905101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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',
    #######################
}