2019-05-11 00:19:48 +03:00
|
|
|
# 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/.
|
|
|
|
---
|
2017-10-17 23:46:06 +03:00
|
|
|
job-defaults:
|
|
|
|
e10s: false
|
2017-10-19 21:35:04 +03:00
|
|
|
mozharness:
|
|
|
|
script:
|
|
|
|
by-test-platform:
|
2018-06-23 02:39:31 +03:00
|
|
|
android-em.*: android_emulator_unittest.py
|
2018-06-23 02:39:32 +03:00
|
|
|
android-hw.*: android_hardware_unittest.py
|
2017-10-19 21:35:04 +03:00
|
|
|
default: desktop_unittest.py
|
|
|
|
config:
|
|
|
|
by-test-platform:
|
2019-04-11 23:49:33 +03:00
|
|
|
android-em-7.*:
|
|
|
|
- android/android_common.py
|
|
|
|
- android/androidx86_7_0.py
|
2018-06-23 02:39:32 +03:00
|
|
|
android-hw.*:
|
2018-07-03 16:33:47 +03:00
|
|
|
- android/android_common.py
|
2018-06-23 02:39:32 +03:00
|
|
|
- android/android_hw.py
|
2017-10-19 21:35:04 +03:00
|
|
|
linux.*:
|
|
|
|
- unittests/linux_unittest.py
|
|
|
|
- remove_executables.py
|
|
|
|
macosx.*:
|
|
|
|
- unittests/mac_unittest.py
|
|
|
|
windows.*:
|
2019-04-01 19:07:42 +03:00
|
|
|
- unittests/win_unittest.py
|
2017-10-17 23:25:41 +03:00
|
|
|
|
|
|
|
cppunit:
|
|
|
|
description: "CPP Unit Tests"
|
|
|
|
suite: cppunittest
|
2019-08-30 00:07:58 +03:00
|
|
|
treeherder-symbol: cppunit
|
2019-09-04 18:58:36 +03:00
|
|
|
target:
|
2018-01-03 19:29:32 +03:00
|
|
|
by-test-platform:
|
2019-09-04 18:58:36 +03:00
|
|
|
android-em-7.*: geckoview-androidTest.apk
|
|
|
|
default: null
|
2020-03-06 03:15:43 +03:00
|
|
|
tier: default
|
|
|
|
run-on-projects: built-projects
|
2017-10-17 23:25:41 +03:00
|
|
|
|
|
|
|
gtest:
|
|
|
|
description: "GTests run"
|
|
|
|
suite: gtest
|
2018-01-12 23:49:58 +03:00
|
|
|
treeherder-symbol: GTest
|
2017-10-17 23:25:41 +03:00
|
|
|
instance-size: xlarge
|
|
|
|
run-on-projects:
|
|
|
|
by-test-platform:
|
2019-03-27 16:44:52 +03:00
|
|
|
windows.*-shippable/.*: [] # permafails on shippable
|
|
|
|
windows.*-pgo/.*: [] # permafails on pgo too
|
2017-11-11 08:36:41 +03:00
|
|
|
windows.*-nightly/.*: [] # permafails on nightly too
|
|
|
|
.*-devedition/.*: [] # don't run on devedition
|
2017-10-17 23:25:41 +03:00
|
|
|
default: built-projects
|
2019-04-11 23:49:33 +03:00
|
|
|
target:
|
|
|
|
by-test-platform:
|
|
|
|
android-em-7.*: geckoview-androidTest.apk
|
|
|
|
default: null
|
2017-10-17 23:25:41 +03:00
|
|
|
tier:
|
|
|
|
by-test-platform:
|
2019-03-27 16:44:52 +03:00
|
|
|
windows7-32-shippable.*: 3
|
2017-10-17 23:25:41 +03:00
|
|
|
windows7-32-pgo.*: 3
|
2019-03-27 16:44:52 +03:00
|
|
|
windows10-64-shippable.*: 3
|
2017-10-17 23:25:41 +03:00
|
|
|
windows10-64-pgo.*: 3
|
|
|
|
windows10-64-asan.*: 3
|
2020-01-14 20:35:00 +03:00
|
|
|
linux.*64-ccov/opt: 3
|
2017-10-17 23:25:41 +03:00
|
|
|
default: default
|
|
|
|
|
|
|
|
jittest:
|
|
|
|
description: "JIT Test run"
|
2019-10-31 00:41:24 +03:00
|
|
|
suite: jittest
|
2018-01-12 23:49:58 +03:00
|
|
|
treeherder-symbol: Jit
|
2018-10-26 23:08:46 +03:00
|
|
|
run-on-projects:
|
|
|
|
by-test-platform:
|
2018-11-28 21:58:25 +03:00
|
|
|
# Turn off for all linux and windows platforms, since it is
|
|
|
|
# redundant with SM(...) jobs -- except for code coverage builds,
|
|
|
|
# which are still needed since ccov doesn't yet work with
|
|
|
|
# spidermonkey jobs.
|
|
|
|
#
|
|
|
|
# The regex is essentially /linux.*/ but with a negative match for
|
|
|
|
# the last 5 characters being "-ccov". The terminal ..... is needed
|
|
|
|
# because otherwise the .* could match the full string and the
|
|
|
|
# empty string would fail to match /(?!-ccov)/ so the whole thing
|
|
|
|
# would succeed. The beginning /?=linux/ is needed because the
|
|
|
|
# platform "linux64" doesn't have enough characters for both the
|
|
|
|
# beginning /linux/ and the final /...../.
|
|
|
|
#
|
|
|
|
# Additionally, platforms contain suffixes like "/opt" or "/debug".
|
|
|
|
(?=linux).*(?!-ccov)...../.*: [] # redundant with SM(...)
|
|
|
|
(?=windows).*(?!-ccov)...../.*: [] # redundant with SM(p)
|
2020-03-18 22:09:41 +03:00
|
|
|
android-hw-.*-aarch64/debug: ['try', 'mozilla-central', 'release']
|
|
|
|
android-hw-.*-api-16/.*: ['try', 'mozilla-central', 'release']
|
2018-10-26 23:08:46 +03:00
|
|
|
default: built-projects
|
2017-10-17 23:25:41 +03:00
|
|
|
chunks:
|
|
|
|
by-test-platform:
|
|
|
|
windows.*: 1
|
2019-05-17 22:38:05 +03:00
|
|
|
windows10-64-ccov/debug: 6
|
2019-11-14 19:20:24 +03:00
|
|
|
windows10-64-ccov/opt: 6
|
2019-05-14 21:33:12 +03:00
|
|
|
macosx.*/opt: 1
|
|
|
|
macosx.*/debug: 3
|
2018-06-23 02:39:32 +03:00
|
|
|
android.*: 10
|
2017-10-17 23:25:41 +03:00
|
|
|
default: 6
|
2018-03-15 00:49:48 +03:00
|
|
|
max-run-time:
|
|
|
|
by-test-platform:
|
2019-11-14 19:20:24 +03:00
|
|
|
windows10-64-ccov/.*: 7200
|
|
|
|
macosx.*-ccov/.*: 7200
|
2020-03-18 21:34:42 +03:00
|
|
|
android-hw.*: 4500
|
2018-03-15 00:49:48 +03:00
|
|
|
default: 3600
|
2017-10-17 23:25:41 +03:00
|
|
|
mozharness:
|
|
|
|
chunked:
|
2017-11-11 08:36:41 +03:00
|
|
|
by-test-platform:
|
|
|
|
windows.*: false
|
|
|
|
macosx.*: false
|
|
|
|
default: true
|
2019-09-04 18:58:36 +03:00
|
|
|
target:
|
|
|
|
by-test-platform:
|
|
|
|
android-.*: geckoview-androidTest.apk
|
|
|
|
default: null
|
2018-06-23 02:39:32 +03:00
|
|
|
tier:
|
|
|
|
by-test-platform:
|
2018-11-10 14:10:08 +03:00
|
|
|
android-hw.*: 2
|
2018-06-23 02:39:32 +03:00
|
|
|
default: default
|