mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
New TC: only run tasks for pushes to the try-communitytc
branch
This commit is contained in:
parent
d8b630779d
commit
55fe681ca1
1 changed files with 12 additions and 1 deletions
|
@ -47,7 +47,18 @@ tasks:
|
||||||
$if: "event.ref[:11] == 'refs/heads/'"
|
$if: "event.ref[:11] == 'refs/heads/'"
|
||||||
then: "${event.ref[11:]}"
|
then: "${event.ref[11:]}"
|
||||||
in:
|
in:
|
||||||
$if: "branch in ['auto', 'try', 'master'] || branch[:4] == 'try-'"
|
$if: >-
|
||||||
|
(
|
||||||
|
taskcluster_root_url == 'https://community-tc.services.mozilla.com' &&
|
||||||
|
branch == 'try-communitytc'
|
||||||
|
) || (
|
||||||
|
taskcluster_root_url == 'https://taskcluster.net' &&
|
||||||
|
branch != 'try-communitytc' &&
|
||||||
|
(
|
||||||
|
branch in ['auto', 'try', 'master'] ||
|
||||||
|
branch[:4] == 'try-'
|
||||||
|
)
|
||||||
|
)
|
||||||
then:
|
then:
|
||||||
$mergeDeep:
|
$mergeDeep:
|
||||||
- {$eval: "task_common"}
|
- {$eval: "task_common"}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue