aboutsummaryrefslogtreecommitdiffstats
path: root/.taskcluster.yml
Commit message (Collapse)AuthorAgeFilesLines
* Route all trychooser tasks to servo-try.Josh Matthews2019-03-131-2/+2
|
* Taskcluster: run tidy on PRsSimon Sapin2019-01-051-58/+93
|
* Tasckluster: use default taskId and taskGroupIdSimon Sapin2019-01-041-2/+0
| | | | See https://docs.taskcluster.net/docs/reference/integrations/taskcluster-github/docs/taskcluster-yml-v1#result
* Taskcluster: run tasks for PRs from everyoneSimon Sapin2019-01-041-1/+1
| | | | | | | | These tasks should be untrusted, since they run before review. The `repo:github.com/servo/servo:pull-request` role determines what scopes (permissions) those tasks have. https://tools.taskcluster.net/auth/roles/repo%3Agithub.com%2Fservo%2Fservo%3Apull-request
* Send decision task data for try-* branches to Treeherder’s servo-trySimon Sapin2018-12-141-3/+8
|
* Use restricted Treeherder scopes in .taskcluster.yml tooSimon Sapin2018-12-131-2/+2
| | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1509027
* Also run Taskcluster tasks when pushing to `master`Simon Sapin2018-12-121-1/+1
| | | | I forgot to include this in https://github.com/servo/servo/pull/22381
* Upload to doc.servo.org when merging to masterSimon Sapin2018-12-121-2/+1
|
* Taskcluster: start a decision task for all try-* branchesSimon Sapin2018-12-111-1/+3
| | | | | This is an alternative fix for https://github.com/servo/saltfs/issues/903, and anticipates adding trychooser support to Taskcluster
* Make Taskcluster tasks show up on TreeherderSimon Sapin2018-11-201-0/+9
| | | | See for example https://treeherder.allizom.org/#/jobs?repo=servo-try-taskcluster
* Taskcluster: use a dedicated role for scopes granted to decision tasksSimon Sapin2018-10-301-7/+1
|
* Taskcluster: test in Android emulatorSimon Sapin2018-10-301-0/+2
|
* Taskcluster: cache ~/.gradleSimon Sapin2018-10-111-1/+1
| | | | | | | | | | | | This is where are kept files whose downloads sometimes fail, so downloading less often will reduce the impact of those failures. ``` > Could not get resource 'https://jcenter.bintray.com/com/android/tools/build/gradle/3.1.3/gradle-3.1.3.pom'. > Could not GET 'https://jcenter.bintray.com/com/android/tools/build/gradle/3.1.3/gradle-3.1.3.pom'. > Read timed out ``` https://tools.taskcluster.net/groups/PGuIkH5QQmqghZozhVtmoQ/tasks/CBa6IbLmQJqYgoswRn-hiw/runs/0/logs/public%2Flogs%2Flive.log#L3411
* Add try-taskcluster branchSimon Sapin2018-10-091-1/+1
|
* Rename decision-task.py to make it importableSimon Sapin2018-10-091-1/+1
|
* Move etc/ci/taskcluster one level upSimon Sapin2018-09-271-1/+1
|
* Add support for daily buildsSimon Sapin2018-09-241-1/+7
| | | | https://tools.taskcluster.net/hooks/project-servo/daily
* Adapt servo/servo-taskcluster-experiments’s code for servo/servoSimon Sapin2018-09-211-5/+5
|
* Use .taskcluster.yml from servo/servo-taskcluster-experimentsSimon Sapin2018-09-211-36/+49
|
* Increase max run time to 2 hoursAneesh Agrawal2018-05-201-1/+1
| | | | | | | | | | | | | | Based on the Taskcluster log for (https://taskcluster-artifacts.net/HkxDh1oKQceXH1fL9RSGow/0/public/logs/live_backing.log), it looks like the job is running successfully but hitting the max time limit. Our builds + tests shouldn't take this long to run normally, but we'll need to set up sccache with cache uploading/downloading in order to improve most build times. For now, bump the max run time to 2 hours; since we complete one build + som tests within an hour, 2 hours should be enough for the second build to finish as well.
* use dedicated workertypeE. Dunham2018-05-091-1/+1
|
* Use existing Docker image tag for nowAneesh Agrawal2017-12-171-1/+1
| | | | | We have not yet pushed a :latest tag, so use the (old) named tag that we have for now.
* Actually run Taskcluster jobs on PRsAneesh Agrawal2017-12-171-2/+5
| | | | | | | | | | 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.
* Add .taskcluster.ymlE. Dunham2017-12-141-0/+34
Template mostly from https://tools.taskcluster.net/quickstart/. Steps from the linux-dev builder in etc/ci/buildbot_steps.yml are in taskcluster-test.sh.