forked from mozilla/mozci
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.taskcluster.yml
49 lines (46 loc) · 1.39 KB
/
.taskcluster.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
version: 1
policy:
pullRequests: public
tasks:
$let:
user: ${event.sender.login}
head_branch:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.ref}
else:
$if: 'tasks_for == "github-push"'
then: ${event.ref}
else: ${event.release.target_commitish}
head_rev:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.sha}
else:
$if: 'tasks_for == "github-push"'
then: ${event.after}
else: ${event.release.tag_name}
repository:
$if: 'tasks_for == "github-pull-request"'
then: ${event.pull_request.head.repo.html_url}
else: ${event.repository.html_url}
in:
- taskId: { $eval: as_slugid("tests_task") }
created: { $fromNow: "" }
deadline: { $fromNow: "1 hour" }
provisionerId: proj-relman
workerType: ci
payload:
maxRunTime: 3600
image: python:3.7
command:
- "/bin/bash"
- "-lcx"
- "git clone --quiet ${repository} &&
cd mozci &&
git -c advice.detachedHead=false checkout ${head_rev} &&
pip install --quiet tox &&
tox"
metadata:
name: mozci linting and tests
description: mozci linting and tests
owner: [email protected]
source: ${repository}/raw/${head_rev}/.taskcluster.yml