summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorTim Taubert <ttaubert@mozilla.com>2016-11-07 10:48:09 +0100
committerTim Taubert <ttaubert@mozilla.com>2016-11-07 10:48:09 +0100
commitdf136b889ba2281ec67c56f8306493a6ae0a899f (patch)
treef7d107e560c9c4c86cc7c61511c76c9472105a50 /automation
parent7f6809726a09fd70b8fc099130cea35d369ef125 (diff)
downloadnss-hg-df136b889ba2281ec67c56f8306493a6ae0a899f.tar.gz
Bug 1315614 - Follow-up to disable Chains tests for GYP builds r=bustage
Diffstat (limited to 'automation')
-rw-r--r--automation/taskcluster/graph/src/extend.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/automation/taskcluster/graph/src/extend.js b/automation/taskcluster/graph/src/extend.js
index d94b1cc03..53238445d 100644
--- a/automation/taskcluster/graph/src/extend.js
+++ b/automation/taskcluster/graph/src/extend.js
@@ -40,6 +40,11 @@ queue.filter(task => {
}
}
+ // GYP builds with -Ddisable_libpkix=1 by default.
+ if (task.collection == "gyp" && task.tests == "chains") {
+ return false;
+ }
+
return true;
});