summaryrefslogtreecommitdiffstats
path: root/taskcluster/ci/build/kind.yml
blob: c87d17428d0e02e82d47eb06ff14d6c6d9158ce0 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
---
loader: gecko_taskgraph.loader.transform:loader

kind-dependencies:
    - toolchain
    - fetch
    - generate-profile

transforms:
    - gecko_taskgraph.transforms.build:transforms
    - gecko_taskgraph.transforms.build_attrs:transforms
    - gecko_taskgraph.transforms.build_lints:transforms
    - gecko_taskgraph.transforms.release_notifications:transforms
    - gecko_taskgraph.transforms.job:transforms
    - gecko_taskgraph.transforms.artifact:transforms
    - gecko_taskgraph.transforms.task:transforms

jobs-from:
    - android.yml
    - android-asan.yml
    - android-stuff.yml
    - linux.yml
    - linux-base-toolchains.yml
    - macosx.yml
    - macosx-native.yml
    - windows.yml
    - windows-mingw.yml

job-defaults:
    worker:
        env:
            MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE: system
    use-system-python: false
    run:
        mozconfig-variant:
            by-release-type:
                beta: beta
                release.*: release
                # We keep using the release configs as the beta and release configs are
                # identical except for
                # https://searchfox.org/mozilla-central/rev/ce9ff94ffed34dc17ec0bfa406156d489eaa8ee1/browser/config/mozconfigs/linux32/release#1    # noqa
                esr.*: release
                default: nightly
        # Note: These settings are only honored by nightly (i.e. shipping) builds
        update-channel:
            by-release-type:
                nightly: nightly
                nightly-oak: nightly-oak
                beta:
                    by-shipping-product:
                        devedition: aurora
                        default: beta
                release.*: release
                esr.*: esr
                default:
                    by-project:
                        try: nightly-try
                        default: null
        # ACCEPTED_MAR_CHANNEL_IDS should usually be the same as the value MAR_CHANNEL_ID.
        # If more than one ID is needed, then you should use a comma separated list
        # of values.
        # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
        mar-channel-id:
            by-release-type:
                nightly.*: firefox-mozilla-central
                beta:
                    by-shipping-product:
                        devedition: firefox-mozilla-aurora
                        default: firefox-mozilla-beta
                release.*: firefox-mozilla-release
                esr.*: firefox-mozilla-esr
                default: firefox-mozilla-central
        accepted-mar-channel-ids:
            by-release-type:
                nightly.*: firefox-mozilla-central
                beta:
                    by-shipping-product:
                        devedition: firefox-mozilla-aurora
                        default: firefox-mozilla-beta,firefox-mozilla-release
                release.*: firefox-mozilla-release
                esr.*: firefox-mozilla-esr
                default: firefox-mozilla-central