blob: 04e7765b05ee129d7e2517a5f73a74370bdf9b58 (
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
|
# 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: 'libotr library build'
worker-type: b-linux-gcp
worker:
max-run-time: 1800
treeherder:
kind: build
platform: toolchains/opt
tier: 1
run-on-projects: []
run:
using: comm-toolchain-script
script: build-libotr.sh
toolchain-artifact: public/build/libotr.tar.xz
linux32-libotr:
treeherder:
symbol: TL(lib32otr)
run:
arguments: ['linux32']
fetches:
toolchain:
- linux64-clang
- linux64-binutils
- sysroot-i686-linux-gnu
linux64-libotr:
treeherder:
symbol: TL(libotr)
run:
arguments: ['linux64']
fetches:
toolchain:
- linux64-clang
- linux64-binutils
- sysroot-x86_64-linux-gnu
linux-aarch64-libotr:
treeherder:
symbol: TL(libotr-aarch64)
tier: 2
run:
arguments: ['linux-aarch64']
fetches:
toolchain:
- sysroot-aarch64-linux-gnu
- linux64-clang
- linux64-binutils
macosx64-x64-libotr:
treeherder:
symbol: TM(libotr)
worker:
env:
MACOS_SDK_DIR: "MacOSX13.3.sdk"
MACOS_TARGET_SDK: "10.12"
run:
arguments: ['macosx64']
fetches:
toolchain:
- linux64-binutils
- linux64-cctools-port
- linux64-clang
# Uses the sdk for builds, not the -toolchain sdk
- macosx64-sdk
macosx64-aarch64-libotr:
treeherder:
symbol: TM(libotr-aarch64)
worker:
env:
MACOS_SDK_DIR: "MacOSX13.3.sdk"
MACOS_TARGET_SDK: "11.0"
run:
arguments: ['macosx64-aarch64']
fetches:
toolchain:
- linux64-binutils
- linux64-cctools-port
- linux64-clang
- macosx64-sdk
win32-libotr:
worker:
docker-image: {in-tree: tb-debian-mingw}
treeherder:
symbol: TW32(libotr)
run:
arguments: ['win32']
win64-libotr:
worker:
docker-image: {in-tree: tb-debian-mingw}
treeherder:
symbol: TW64(libotr)
run:
arguments: ['win64']
|