aboutsummaryrefslogtreecommitdiffstats
path: root/.taskcluster.yml
blob: 38aa11b9482ce4e864fbf9d976590413fa9b0032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: 0
metadata:
  name: servo
  description: >-
    A modern, high-performance browser engine designed for both application
    and embedded use.
  owner: '{{ event.head.user.email }}'
  source: '{{ event.head.repo.url }}'
tasks:
  - provisionerId: '{{ taskcluster.docker.provisionerId }}'
    workerType: 'servo-docker-worker'
    extra:
      github:
        events:
          - pull_request.opened
          - pull_request.reopened
          - pull_request.synchronize
    payload:
      maxRunTime: 7200
      image: 'servobrowser/servo-linux-dev:servo-linux-build-deps-2017-06-30'
      command:
        - /bin/bash
        - '--login'
        - '-c'
        - '-x'
        - >-
          git clone {{event.head.repo.url}} servo &&
          cd servo &&
          git config advice.detachedHead false &&
          git checkout {{event.head.sha}} &&
          etc/ci/taskcluster-test.sh
    metadata:
      name: linux-tests
      description: Run Linux tests.
      owner: '{{ event.head.user.email }}'
      source: '{{ event.head.repo.url }}'
allowPullRequests: public