diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-08-11 19:26:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-11 17:26:15 +0000 |
commit | efa38401c6650bf8f23e3a636b95faba8646d63e (patch) | |
tree | 918cb0253ebabddd2eca0f7b7503de8eb77510be /python/servo | |
parent | c46631a1ce8a687b043214d59a7e908395ba7041 (diff) | |
download | servo-efa38401c6650bf8f23e3a636b95faba8646d63e.tar.gz servo-efa38401c6650bf8f23e3a636b95faba8646d63e.zip |
Support mac wpt builds (#29867)
* Add wpt-mac builds
* Fix wpt reporting check run tag
* There can only be five concurrent mac runners
Diffstat (limited to 'python/servo')
-rw-r--r-- | python/servo/devenv_commands.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 9e7527d6fd8..86563a13624 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -24,6 +24,17 @@ from mach.decorators import ( from servo.command_base import CommandBase, cd, call +VALID_TRY_BRACHES = [ + "try", + "try-linux", + "try-mac", + "try-windows", + "try-wpt", + "try-wpt-2020", + "try-wpt-mac", + "try-wpt-mac-2020" +] + @CommandProvider class MachCommands(CommandBase): @@ -282,7 +293,6 @@ class MachCommands(CommandBase): def try_jobs(self, jobs): branches = [] # we validate branches because force pushing is destructive - VALID_TRY_BRACHES = ["try", "try-linux", "try-mac", "try-windows", "try-wpt", "try-wpt-2020"] for job in jobs: # branches must start with try- if "try" not in job: |