Skip to content

Commit

Permalink
Bug 1274350 - Remove taskcluster-github remains to fix schema validat…
Browse files Browse the repository at this point in the history
…ion failures r=me
  • Loading branch information
Tim Taubert committed May 24, 2016
1 parent 06b405b commit cfef426
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .taskcluster.yml
Expand Up @@ -67,6 +67,8 @@ tasks:
image: "ttaubert/nss-ci:0.0.13"

env:
TC_OWNER: {{owner}}
TC_SOURCE: {{{source}}}
TC_DOCKER_IMAGE: "ttaubert/nss-ci:0.0.13"
TC_PROVISIONER_ID: "aws-provisioner-v1"
TC_WORKER_TYPE: "hg-worker"
Expand Down
6 changes: 3 additions & 3 deletions automation/taskcluster/graph/build.js
Expand Up @@ -31,8 +31,8 @@ function build_task(id, def) {
maxRunTime: 3600
},
metadata: {
owner: process.env.GITHUB_HEAD_USER_EMAIL,
source: process.env.GITHUB_HEAD_REPO_URL
owner: process.env.TC_OWNER,
source: process.env.TC_SOURCE
}
}
}];
Expand All @@ -41,7 +41,7 @@ function build_task(id, def) {
task.created = from_now(0);
task.deadline = from_now(24);
task.provisionerId = process.env.TC_PROVISIONER_ID || "aws-provisioner-v1";
task.workerType = process.env.TC_WORKER_TYPE || "github-worker";
task.workerType = process.env.TC_WORKER_TYPE || "hg-worker";
task.schedulerId = "task-graph-scheduler";

// Clone definition.
Expand Down

0 comments on commit cfef426

Please sign in to comment.