mirror of
https://github.com/servo/servo.git
synced 2025-08-11 08:25:32 +01:00
Auto merge of #19591 - aneeshusa:actually-trigger-taskcluster, r=edunham
Actually run Taskcluster jobs on PRs Spawn TC jobs on the following events: - Pull request opened or reopened - New commit made in pull request Spawn TC jobs for pull requests started by anybody, not just trusted collaborators. This is safe for now as we do not provide any scopes to spawned jobs. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19591) <!-- Reviewable:end -->
This commit is contained in:
commit
6440f17835
1 changed files with 6 additions and 3 deletions
|
@ -11,10 +11,13 @@ tasks:
|
||||||
workerType: '{{ taskcluster.docker.workerType }}'
|
workerType: '{{ taskcluster.docker.workerType }}'
|
||||||
extra:
|
extra:
|
||||||
github:
|
github:
|
||||||
events: []
|
events:
|
||||||
|
- pull_request.opened
|
||||||
|
- pull_request.reopened
|
||||||
|
- pull_request.synchronize
|
||||||
payload:
|
payload:
|
||||||
maxRunTime: 3600
|
maxRunTime: 3600
|
||||||
image: servobrowser/servo-linux-dev
|
image: 'servobrowser/servo-linux-dev:servo-linux-build-deps-2017-06-30'
|
||||||
command:
|
command:
|
||||||
- /bin/bash
|
- /bin/bash
|
||||||
- '--login'
|
- '--login'
|
||||||
|
@ -31,4 +34,4 @@ tasks:
|
||||||
description: Run Linux tests.
|
description: Run Linux tests.
|
||||||
owner: '{{ event.head.user.email }}'
|
owner: '{{ event.head.user.email }}'
|
||||||
source: '{{ event.head.repo.url }}'
|
source: '{{ event.head.repo.url }}'
|
||||||
|
allowPullRequests: public
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue