summaryrefslogtreecommitdiff
path: root/automation/taskcluster/graph/src/extend.js
diff options
context:
space:
mode:
authorAnna Weine <anna.weine@mozilla.com>2022-11-07 18:26:26 +0000
committerAnna Weine <anna.weine@mozilla.com>2022-11-07 18:26:26 +0000
commitd7f9dd55acd70f549c65c4d36eabc56541f07d2a (patch)
treedbddcd45616bff0c9ff4b471b39fcb2c2be985ba /automation/taskcluster/graph/src/extend.js
parent7ea2ab1252f5aeaa3a84b70a8f6364973c2d0a35 (diff)
downloadnss-hg-d7f9dd55acd70f549c65c4d36eabc56541f07d2a.tar.gz
Bug 1765759 - Removing SAW docker from the NSS build system. r=nss-reviewers,jschanck
Differential Revision: https://phabricator.services.mozilla.com/D160237
Diffstat (limited to 'automation/taskcluster/graph/src/extend.js')
-rw-r--r--automation/taskcluster/graph/src/extend.js73
1 files changed, 0 insertions, 73 deletions
diff --git a/automation/taskcluster/graph/src/extend.js b/automation/taskcluster/graph/src/extend.js
index 0f2498bb2..f354f7f73 100644
--- a/automation/taskcluster/graph/src/extend.js
+++ b/automation/taskcluster/graph/src/extend.js
@@ -41,11 +41,6 @@ const FUZZ_IMAGE_32 = {
path: "automation/taskcluster/docker-fuzz32"
};
-const SAW_IMAGE = {
- name: "saw",
- path: "automation/taskcluster/docker-saw"
-};
-
const WINDOWS_CHECKOUT_CMD =
"bash -c \"hg clone -r $NSS_HEAD_REVISION $NSS_HEAD_REPOSITORY nss || " +
"(sleep 2; hg clone -r $NSS_HEAD_REVISION $NSS_HEAD_REPOSITORY nss) || " +
@@ -1189,74 +1184,6 @@ async function scheduleTools() {
]
}));
- let task_saw = queue.scheduleTask(merge(base, {
- symbol: "B",
- group: "SAW",
- name: "LLVM bitcode build (32 bit)",
- image: SAW_IMAGE,
- kind: "build",
- env: {
- AR: "llvm-ar-3.8",
- CC: "clang-3.8",
- CCC: "clang++-3.8"
- },
- artifacts: {
- public: {
- expires: 24 * 7,
- type: "directory",
- path: "/home/worker/artifacts"
- }
- },
- command: [
- "/bin/bash",
- "-c",
- "bin/checkout.sh && nss/automation/taskcluster/scripts/build_gyp.sh --disable-tests --emit-llvm -t ia32"
- ]
- }));
-
- queue.scheduleTask(merge(base, {
- parent: task_saw,
- symbol: "bmul",
- group: "SAW",
- name: "bmul.saw",
- image: SAW_IMAGE,
- command: [
- "/bin/bash",
- "-c",
- "bin/checkout.sh && nss/automation/taskcluster/scripts/run_saw.sh bmul"
- ]
- }));
-
- // TODO: The ChaCha20 saw verification is currently disabled because the new
- // HACL 32-bit code can't be verified by saw right now to the best of
- // my knowledge.
- // Bug 1604130
- // queue.scheduleTask(merge(base, {
- // parent: task_saw,
- // symbol: "ChaCha20",
- // group: "SAW",
- // name: "chacha20.saw",
- // image: SAW_IMAGE,
- // command: [
- // "/bin/bash",
- // "-c",
- // "bin/checkout.sh && nss/automation/taskcluster/scripts/run_saw.sh chacha20"
- // ]
- // }));
-
- queue.scheduleTask(merge(base, {
- parent: task_saw,
- symbol: "Poly1305",
- group: "SAW",
- name: "poly1305.saw",
- image: SAW_IMAGE,
- command: [
- "/bin/bash",
- "-c",
- "bin/checkout.sh && nss/automation/taskcluster/scripts/run_saw.sh poly1305"
- ]
- }));
-
queue.scheduleTask(merge(base, {
symbol: "Coverage",
name: "Coverage",