test-platforms.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # This file maps build platforms to test platforms. In some cases, a
  2. # single build may be tested on multiple test platforms, but a single test
  3. # platform can only link to one build platform. Both build and test platforms
  4. # are represented as <platform>/<type>, where <type> is what Treeherder calls a
  5. # collection.
  6. #
  7. # Each test platform further specifies the set of tests that will be scheduled
  8. # for the platform, referring to tests defined in test-sets.yml.
  9. #
  10. # Note that set does not depend on the tree; tree-dependent job selection
  11. # should be performed in the target task selection phase of task-graph
  12. # generation.
  13. linux64/debug:
  14. build-platform: linux64/debug
  15. test-set: all-tests
  16. linux64/opt:
  17. build-platform: linux64/opt
  18. test-set: all-tests
  19. # TODO: use 'pgo' and 'asan' labels here, instead of -pgo/opt
  20. linux64-pgo/opt:
  21. build-platform: linux64-pgo/opt
  22. test-set: all-tests
  23. linux64-asan/opt:
  24. build-platform: linux64-asan/opt
  25. test-set: asan-tests
  26. linux64-ccov/opt:
  27. build-platform: linux64-ccov/opt
  28. test-set: ccov-code-coverage-tests
  29. linux64-jsdcov/opt:
  30. build-platform: linux64-jsdcov/opt
  31. test-set: jsdcov-code-coverage-tests
  32. # win32 vm
  33. windows7-32-vm/debug:
  34. build-platform: win32/debug
  35. test-set: windows-vm-tests
  36. windows7-32-vm/opt:
  37. build-platform: win32/opt
  38. test-set: windows-vm-tests
  39. # win32 gpu
  40. #windows7-32/debug:
  41. # build-platform: win32/debug
  42. # test-set: windows-gpu-tests
  43. #windows7-32/opt:
  44. # build-platform: win32/opt
  45. # test-set: windows-gpu-tests
  46. # win64 vm
  47. windows10-64-vm/debug:
  48. build-platform: win64/debug
  49. test-set: windows-vm-tests
  50. windows10-64-vm/opt:
  51. build-platform: win64/opt
  52. test-set: windows-vm-tests
  53. # win64 gpu
  54. #windows10-64/debug:
  55. # build-platform: win64/debug
  56. # test-set: windows-gpu-tests
  57. #windows10-64/opt:
  58. # build-platform: win64/opt
  59. # test-set: windows-gpu-tests
  60. # macosx64/debug:
  61. # build-platform: macosx64/debug
  62. # test-set: macosx64-tests
  63. # macosx64/opt:
  64. # build-platform: macosx64/opt
  65. # test-set: macosx64-tests