blob: f0f9b3e70cf0bd597c86bdb1c6ad9cc570342c38 (
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
|
# 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/.
---
job-defaults:
description: "minidump-stackwalk toolchain build"
attributes:
local-toolchain: true
worker-type: b-linux-gcp
worker:
max-run-time: 1800
env:
FETCH: rust-minidump/minidump-stackwalk
run:
script: build-rust-based-toolchain.sh
toolchain-artifact: public/build/minidump-stackwalk.tar.zst
fetches:
fetch:
- rust-minidump
linux64-minidump-stackwalk:
treeherder:
symbol: TL(stackwalk)
run:
arguments: ['x86_64-unknown-linux-gnu']
fetches:
toolchain:
- linux64-clang-toolchain
- linux64-rust-toolchain
- sysroot-x86_64-linux-gnu
macosx64-minidump-stackwalk:
treeherder:
symbol: TM(stackwalk)
run:
arguments: ['x86_64-apple-darwin']
fetches:
toolchain:
- linux64-rust-macos-toolchain
- linux64-clang-toolchain
- macosx64-sdk-toolchain
macosx64-aarch64-minidump-stackwalk:
treeherder:
symbol: TM(stackwalk-arm64)
run:
arguments: ['aarch64-apple-darwin']
fetches:
toolchain:
- linux64-rust-macos-toolchain
- linux64-clang-toolchain
- macosx64-sdk-toolchain
win32-minidump-stackwalk:
treeherder:
symbol: TW32(stackwalk)
run:
arguments: ['i686-pc-windows-msvc']
fetches:
toolchain:
- linux64-clang-toolchain
- linux64-rust-windows-toolchain
- vs-toolchain
win64-minidump-stackwalk:
treeherder:
symbol: TW64(stackwalk)
run:
arguments: ['x86_64-pc-windows-msvc']
fetches:
toolchain:
- linux64-clang-toolchain
- linux64-rust-windows-toolchain
- vs-toolchain
# This is a totally different thing but it used to share common code with
# minidump-stackwalk, so it lives here for historical reasons.
linux64-breakpad-injector:
description: "breakpad injector toolchain build"
run:
script: build-breakpad-injector.sh
toolchain-artifact: public/build/injector.tar.zst
sparse-profile: null
resources:
- 'build/moz.configure'
- 'config/external/zlib'
- 'moz.configure'
- 'toolkit/crashreporter'
- 'toolkit/crashreporter/google-breakpad/src/processor'
- 'tools/crashreporter/'
treeherder:
symbol: TL(injector)
fetches:
toolchain:
- linux64-clang-toolchain
- linux64-toolchain-sysroot
|