-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run PRs on Taskcluster #10503
Comments
In TravisCI today, we script unnecessary jobs to exit early. This avoids unnecessary work, but it also makes task reports a little noisy (since they include meaningless results for those no-op jobs). A nice-to-have improvement would be to use TaskCluster's "decision tasks" feature to avoid scheduling unnecessary tasks. @jgraham found an example of a GitHub project using a TaskCluster decision task here: |
https://github.com/lissyx/taskcluster-github-decision/blob/master/tc-decision.py is another example to crib from. |
This issue could be split into a bunch of smaller ones, basically one for each Travis job we have. The one that I was thinking about when filing this issue was test running itself. A decision task that looks at the affected tests and picks some number of tasks to get the job done, perhaps up to as many as are used for master builds if testharness.js itself is changed. |
If #9226 works out, it's an obvious next step to also run some subset of the tests for PRs, probably replacing the Travis runs that so often time out: #7660
The text was updated successfully, but these errors were encountered: