summaryrefslogtreecommitdiffstats
path: root/taskcluster/ci/docker-image/kind.yml
blob: 1b00918a7431477bdf80b655d91ab25a8d05962f (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# 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:
    - packages

transforms:
    - gecko_taskgraph.transforms.docker_image:transforms
    - gecko_taskgraph.transforms.cached_tasks:transforms
    - gecko_taskgraph.transforms.task:transforms

# make a task for each docker-image we might want.  For the moment, since we
# write artifacts for each, these are whitelisted, but ideally that will change
# (to use subdirectory clones of the proper directory), at which point we can
# generate tasks for every docker image in the directory, secure in the
# knowledge that unnecessary images will be omitted from the target task graph
jobs:
    image_builder:
        symbol: I(ib)
    # Neither the ubuntu1804-*raw nor the ubuntu1804-*packages images can have
    # packages dependencies.
    ubuntu1804-raw:
        symbol: I(ub18-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: ubuntu:bionic
    ubuntu1804-packages:
        symbol: I(ub18-pkg)
        definition: debian-packages
        parent: ubuntu1804-raw
    ubuntu1804-i386-raw:
        symbol: I(ub18-32-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: i386/ubuntu:bionic
    ubuntu1804-i386-packages:
        symbol: I(ub18-32-pkg)
        definition: debian-packages
        parent: ubuntu1804-i386-raw
    ubuntu1804-base:
        symbol: I(ub18-base)
        parent: ubuntu1804-raw
        packages:
            - ub18-mercurial
            - ub18-python-zstandard
            - ub18-python-psutil
    ubuntu1804-test-base:
        symbol: I(ub18-test-base)
        parent: ubuntu1804-base
        packages:
            - ub18-libc6
            - ub18-32-libc6
    ubuntu1804-test:
        symbol: I(ub18-test)
        parent: ubuntu1804-test-base
    # Neither the ubuntu1804-*raw nor the ubuntu1804-*packages images can have
    # packages dependencies.
    ubuntu2004-raw:
        symbol: I(ub20-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: ubuntu:focal
    ubuntu2004-packages:
        symbol: I(ub20-pkg)
        definition: debian-packages
        parent: ubuntu2004-raw
    ubuntu2004-base:
        symbol: I(ub20-base)
        definition: debian-base
        parent: ubuntu2004-raw
        packages:
            - ub20-mercurial
            - ub20-python-zstandard
    # Neither the debian8-*raw nor the debian8-*packages images can have
    # packages dependencies.
    debian8-raw:
        symbol: I(deb8-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: debian:jessie-20210208
            DIST: jessie
    debian8-packages:
        symbol: I(deb8-pkg)
        definition: debian-packages
        parent: debian8-raw
    debian8-i386-raw:
        symbol: I(deb8-32-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: i386/debian:jessie-20210208
            DIST: jessie
    debian8-i386-packages:
        symbol: I(deb8-32-pkg)
        definition: debian-packages
        parent: debian8-i386-raw
    custom-v8:
        symbol: I(custom-v8)
        parent: debian11-base
    # Chromium-as-Release
    custom-car-linux:
        symbol: I(custom-car-linux)
        parent: debian11-base
    valgrind-build:
        symbol: I(vb)
        parent: debian11-amd64-build
        packages:
            - deb11-valgrind
    lint:
        symbol: I(lnt)
        parent: debian11-base
    # Neither the debian11-raw nor the debian11-packages images can have
    # packages dependencies.
    debian11-raw:
        symbol: I(deb11-raw)
        definition: debian-raw
        args:
            BASE_IMAGE: debian:bullseye-20221205
            DIST: bullseye
            SNAPSHOT: '20221204T212138Z'
    debian11-packages:
        symbol: I(deb11-pkg)
        definition: debian-packages
        parent: debian11-raw
    debian11-base:
        symbol: I(deb11-base)
        definition: debian-base
        parent: debian11-raw
        packages:
            - deb11-mercurial
            - deb11-python-zstandard
    debian11-amd64-build:
        symbol: I(deb11)
        parent: debian11-base
        definition: debian-build
    debian11-repackage:
        symbol: I(deb11-rpk)
        parent: debian11-base
        definition: debian-repackage
        packages:
            - deb11-mercurial
    deb11-toolchain-build:
        symbol: I(deb11-toolchain)
        parent: debian11-base
        definition: toolchain-build
        packages:
            - deb11-cmake
    android-build:
        symbol: I(agb)
        parent: debian11-base
    fetch:
        symbol: I(fetch)
        parent: debian11-raw
        packages:
            - deb11-python-zstandard
    static-analysis-build:
        symbol: I(static-analysis-build)
        parent: debian11-base
    gdb-test:
        symbol: I(gdb)
        parent: debian11-amd64-build
        definition: gdb-test
    index-task:
        symbol: I(idx)
    funsize-update-generator:
        symbol: I(pg)
    update-verify:
        symbol: I(uv)
        parent: ubuntu2004-base
    diffoscope:
        symbol: I(diff)
        parent: debian11-base
    partner-repack:
        symbol: I(PR)
        parent: debian11-base
        definition: partner-repack
    updatebot:
        symbol: I(3rdp)
        parent: push-to-try
    periodic-updates:
        symbol: I(file)
        parent: debian11-base
    firefox-snap:
        symbol: I(snap)
    firefox-flatpak:
        symbol: I(flatpak)
    webrender:
        symbol: I(webrender)
        parent: debian11-base
    condprof:
        symbol: I(condprof)
        parent: ubuntu1804-test
    github-sync:
        symbol: I(github-sync)
        parent: debian11-base
    sentry:
        symbol: I(sentry)
        parent: debian11-base
    system-symbols-mac:
        symbol: I(system-symbols-mac)
        parent: debian11-base
    system-symbols-win:
        symbol: I(system-symbols-win)
        parent: debian11-base
    system-symbols-linux-scraper:
        symbol: I(system-symbols-linux)
        parent: debian11-base
    push-to-try:
        symbol: I(push-to-try)
        parent: debian11-base
    decision:
        symbol: I(decision)
        parent: ubuntu2004-base