summaryrefslogtreecommitdiff
path: root/automation/taskcluster
diff options
context:
space:
mode:
authorskhamis <skhamis@mozilla.com>2022-11-17 21:09:09 +0000
committerskhamis <skhamis@mozilla.com>2022-11-17 21:09:09 +0000
commit3fe2096e2f7853c24fec1210deaf44c0a33771e3 (patch)
treea7971158a1cff280197ef0ea8d27af74dc56aa5f /automation/taskcluster
parent619e133bf33b87b23c71caffedc96e833c5e2867 (diff)
downloadnss-hg-3fe2096e2f7853c24fec1210deaf44c0a33771e3.tar.gz
Bug 1800989 - Enable static builds in the CI r=bbeurdouche
Differential Revision: https://phabricator.services.mozilla.com/D162252
Diffstat (limited to 'automation/taskcluster')
-rw-r--r--automation/taskcluster/graph/src/extend.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/automation/taskcluster/graph/src/extend.js b/automation/taskcluster/graph/src/extend.js
index f354f7f73..90265d832 100644
--- a/automation/taskcluster/graph/src/extend.js
+++ b/automation/taskcluster/graph/src/extend.js
@@ -257,6 +257,11 @@ export default async function main() {
collection: "debug"
}, "build_gyp.sh");
+ await scheduleWindows("Windows 2012 64 Static (opt)", {
+ platform: "windows2012-64",
+ collection: "opt-static"
+ }, "build_gyp.sh --opt --static");
+
await scheduleWindows("Windows 2012 32 (opt)", {
platform: "windows2012-32",
}, "build_gyp.sh --opt -t ia32");
@@ -314,6 +319,7 @@ export default async function main() {
);
await scheduleMac("Mac (opt)", {collection: "opt"}, "--opt");
+ await scheduleMac("Mac Static (opt)", {collection: "opt-static"}, "--opt --static");
await scheduleMac("Mac (debug)", {collection: "debug"});
// Must be executed after all other tasks are scheduled