summaryrefslogtreecommitdiff
path: root/automation
diff options
context:
space:
mode:
authorTim Taubert <ttaubert@mozilla.com>2016-09-16 13:42:56 -0700
committerTim Taubert <ttaubert@mozilla.com>2016-09-16 13:42:56 -0700
commit6c214486e9ef0f7b8653dea24689e5491de959b6 (patch)
tree7d4d3f1347d05853217823b9b9710268e4193081 /automation
parent6efedbcb0d51f696cdb7a5d44f781e69e3ca5802 (diff)
downloadnss-hg-6c214486e9ef0f7b8653dea24689e5491de959b6.tar.gz
Bug 1303224 - Remove the PKCS#11 bypass r=franziskus,mt
Diffstat (limited to 'automation')
-rw-r--r--automation/taskcluster/graph/src/extend.js14
-rwxr-xr-xautomation/taskcluster/scripts/run_scan_build.sh2
2 files changed, 1 insertions, 15 deletions
diff --git a/automation/taskcluster/graph/src/extend.js b/automation/taskcluster/graph/src/extend.js
index 8c6c230c7..5827468e5 100644
--- a/automation/taskcluster/graph/src/extend.js
+++ b/automation/taskcluster/graph/src/extend.js
@@ -209,12 +209,6 @@ async function scheduleLinux(name, base) {
}));
queue.scheduleTask(merge(extra_base, {
- name: `${name} w/ NSS_NO_PKCS11_BYPASS=1`,
- env: {NSS_NO_PKCS11_BYPASS: "1"},
- symbol: "noPkcs11Bypass"
- }));
-
- queue.scheduleTask(merge(extra_base, {
name: `${name} w/ NSS_DISABLE_LIBPKIX=1`,
env: {NSS_DISABLE_LIBPKIX: "1"},
symbol: "noLibpkix"
@@ -279,14 +273,6 @@ async function scheduleWindows(name, base) {
]
}));
- // Extra builds.
- let extra_base = merge({group: "Builds"}, build_base);
- queue.scheduleTask(merge(extra_base, {
- name: `${name} w/ NSS_NO_PKCS11_BYPASS=1`,
- env: {NSS_NO_PKCS11_BYPASS: "1"},
- symbol: "noPkcs11Bypass"
- }));
-
return queue.submit();
}
diff --git a/automation/taskcluster/scripts/run_scan_build.sh b/automation/taskcluster/scripts/run_scan_build.sh
index 25b133d88..95382c8e4 100755
--- a/automation/taskcluster/scripts/run_scan_build.sh
+++ b/automation/taskcluster/scripts/run_scan_build.sh
@@ -23,7 +23,7 @@ cd nss && make nss_build_all
# we run scan-build on these folders
declare -a scan=("lib/ssl" "lib/freebl")
# corresponds to the number of errors that are expected in the |scan| folder
-declare -a ignore=(1 0)
+declare -a ignore=(0 0)
for i in "${scan[@]}"
do