diff options
author | sagudev <16504129+sagudev@users.noreply.github.com> | 2023-04-24 07:54:13 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-04-25 09:53:01 +0200 |
commit | 200f90cf9fd3e5c3ead1bd72fe5a522dba659498 (patch) | |
tree | 0ad93ed71440865760a713d4d6f859d602b51c5a /python/servo/devenv_commands.py | |
parent | 8bed625d28fea9cd23e7721ae332b26f2a94e20d (diff) | |
download | servo-200f90cf9fd3e5c3ead1bd72fe5a522dba659498.tar.gz servo-200f90cf9fd3e5c3ead1bd72fe5a522dba659498.zip |
Add try-wpt-2020 runner
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 47df6599b92..7d3481d1c19 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -352,7 +352,7 @@ 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"] + 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: |