blob: b03d3c41d6e4cc5a03138ef1141fa96f5df33171 (
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
|
# This file maps build platforms to test platforms. In some cases, a
# single build may be tested on multiple test platforms, but a single test
# platform can only link to one build platform. Both build and test platforms
# are represented as <platform>/<type>, where <type> is what Treeherder calls a
# collection.
#
# Each test platform further specifies the set of tests that will be scheduled
# for the platform, referring to tests defined in test-sets.yml.
#
# Note that set does not depend on the tree; tree-dependent job selection
# should be performed in the target task selection phase of task-graph
# generation.
linux64/debug:
build-platform: linux64/debug
test-set: all-tests
linux64/opt:
build-platform: linux64/opt
test-set: all-tests
# TODO: use 'pgo' and 'asan' labels here, instead of -pgo/opt
linux64-pgo/opt:
build-platform: linux64-pgo/opt
test-set: all-tests
linux64-asan/opt:
build-platform: linux64-asan/opt
test-set: asan-tests
linux64-ccov/opt:
build-platform: linux64-ccov/opt
test-set: ccov-code-coverage-tests
linux64-jsdcov/opt:
build-platform: linux64-jsdcov/opt
test-set: jsdcov-code-coverage-tests
# win32 vm
windows7-32-vm/debug:
build-platform: win32/debug
test-set: windows-vm-tests
windows7-32-vm/opt:
build-platform: win32/opt
test-set: windows-vm-tests
# win32 gpu
#windows7-32/debug:
# build-platform: win32/debug
# test-set: windows-gpu-tests
#windows7-32/opt:
# build-platform: win32/opt
# test-set: windows-gpu-tests
# win64 vm
windows10-64-vm/debug:
build-platform: win64/debug
test-set: windows-vm-tests
windows10-64-vm/opt:
build-platform: win64/opt
test-set: windows-vm-tests
# win64 gpu
#windows10-64/debug:
# build-platform: win64/debug
# test-set: windows-gpu-tests
#windows10-64/opt:
# build-platform: win64/opt
# test-set: windows-gpu-tests
# macosx64/debug:
# build-platform: macosx64/debug
# test-set: macosx64-tests
# macosx64/opt:
# build-platform: macosx64/opt
# test-set: macosx64-tests
|