diff options
author | Delan Azabani <dazabani@igalia.com> | 2025-01-27 16:44:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-27 08:44:52 +0000 |
commit | 5a0a60efc116d725acd59e2baf5aaa75604cf66f (patch) | |
tree | 957ad09bbbc8efe342ba8382135dca8e56df9cee /python/servo/try_parser.py | |
parent | 7045630fee46d3b9a68779f010130f6431dfd64f (diff) | |
download | servo-5a0a60efc116d725acd59e2baf5aaa75604cf66f.tar.gz servo-5a0a60efc116d725acd59e2baf5aaa75604cf66f.zip |
CI: temporarily stop running libservo builds by default (#35180)
Signed-off-by: Delan Azabani <dazabani@igalia.com>
Diffstat (limited to 'python/servo/try_parser.py')
-rw-r--r-- | python/servo/try_parser.py | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/python/servo/try_parser.py b/python/servo/try_parser.py index f9297bc5ea9..c6a7454994c 100644 --- a/python/servo/try_parser.py +++ b/python/servo/try_parser.py @@ -181,11 +181,8 @@ class Config(object): self.fail_fast = True continue # skip over keyword if word == "full": - words.extend(["linux-unit-tests", "linux-build-libservo", "linux-wpt-2020", "linux-bencher"]) - words.extend([ - "macos-unit-tests", "macos-build-libservo", "windows-unit-tests", "windows-build-libservo", - "android", "ohos", "lint", - ]) + words.extend(["linux-unit-tests", "linux-wpt-2020", "linux-bencher"]) + words.extend(["macos-unit-tests", "windows-unit-tests", "android", "ohos", "lint"]) continue # skip over keyword if word == "bencher": words.extend(["linux-bencher", "macos-bencher", "windows-bencher", "android-bencher", "ohos-bencher"]) @@ -240,32 +237,32 @@ class TestParser(unittest.TestCase): self.assertDictEqual(json.loads(Config("").to_json()), {"fail_fast": False, "matrix": [ { - "name": "Linux (Unit Tests, Build libservo, WPT, Bencher)", + "name": "Linux (Unit Tests, WPT, Bencher)", "workflow": "linux", "wpt_layout": "2020", "profile": "release", "unit_tests": True, - 'build_libservo': True, + 'build_libservo': False, 'bencher': True, "wpt_args": "" }, { - "name": "MacOS (Unit Tests, Build libservo)", + "name": "MacOS (Unit Tests)", "workflow": "macos", "wpt_layout": "none", "profile": "release", "unit_tests": True, - 'build_libservo': True, + 'build_libservo': False, 'bencher': False, "wpt_args": "" }, { - "name": "Windows (Unit Tests, Build libservo)", + "name": "Windows (Unit Tests)", "workflow": "windows", "wpt_layout": "none", "profile": "release", "unit_tests": True, - 'build_libservo': True, + 'build_libservo': False, 'bencher': False, "wpt_args": "" }, |