.taskcluster.yml 792 B

1234567891011121314151617181920212223242526272829
  1. version: 0
  2. tasks:
  3. - provisionerId: '{{ taskcluster.docker.provisionerId }}'
  4. workerType: '{{ taskcluster.docker.workerType }}'
  5. extra:
  6. github:
  7. events:
  8. - pull_request.opened
  9. - pull_request.reopened
  10. - pull_request.synchronize
  11. - push
  12. payload:
  13. maxRunTime: 7200
  14. image: piatra/asmochitests
  15. command:
  16. - /bin/bash
  17. - '--login'
  18. - '-c'
  19. - >-
  20. git clone {{event.head.repo.url}} /activity-stream && cd /activity-stream &&
  21. git checkout {{event.head.sha}} && bash ./mochitest.sh
  22. metadata:
  23. name: activitystream
  24. description: run mochitests for PRs
  25. owner: '{{ event.head.user.email }}'
  26. source: '{{ event.head.repo.url }}'
  27. allowPullRequests: public