@cryptotaxi247 / infra / commits / f61ad3db

added strategoxt-packages

svn path=/configurations/trunk/tud/; revision=11449

Martin Bravenboer committed Apr 1, 2008 at 20:23 UTC f61ad3dbd6cb5b973b3714cac8f7900b1085572c
1 file changed +31
supervisor/strategoxt/jobs.nix
+31
@@ -35,6 +35,11 @@ with (import ./jobs-helpers.nix) attrs;
35 makeInfoURL = makeInfoURL.usingBaseline;
36 };
37
38 + strategoxtUtilsTrunk = makeEasyJob {
39 + spec = specs.strategoxtUtils;
40 + makeInfoURL = makeInfoURL.usingBaseline;
41 + };
42 +
43 strategoLibrariesTrunk = makeEasyJob {
44 spec = specs.strategoLibraries;
45 makeInfoURL = makeInfoURL.usingBaseline;
@@ -213,6 +218,32 @@ with (import ./jobs-helpers.nix) attrs;
218 notifyAddresses = ["karltk@strategoxt.org" "martin.bravenboer@gmail.com" "e.visser@tudelft.nl"];
219 };
220
221 + strategoxtPackages = makeJob {
222 + args =
223 + strategoxtArgs {
224 + jobFile = "strategoxt/custom/strategoxt-packages.nix";
225 + jobAttr = "release";
226 + subdir = "strategoxt-packages";
227 + };
228 +
229 + inputs = {
230 + systems = pathInput ./systems.nix;
231 + atermInfo = makeInfoURL.usingBaseline specs.aterm;
232 + sdf2BundleInfo = makeInfoURL.usingBaseline specs.sdf2Bundle;
233 + strategoxtInfo = makeInfoURL.usingBaseline specs.strategoxt;
234 + strategoLibrariesInfo = makeInfoURL.usingBaseline specs.strategoLibraries;
235 + strategoxtUtilsInfo = makeInfoURL.unstable specs.strategoxtUtils;
236 + strategoShellInfo = makeInfoURL.unstable specs.strategoShell;
237 + javaFrontInfo = makeInfoURL.unstable specs.javaFront;
238 + dryadInfo = makeInfoURL.unstable specs.dryad;
239 + transformersGenericToolsInfo = makeInfoURL.unstable specs.transformersGenericTools;
240 + phpFrontInfo = makeInfoURL.unstable specs.phpFront;
241 + };
242 +
243 + notifyAddresses = ["karltk@strategoxt.org" "martin.bravenboer@gmail.com" "e.visser@tudelft.nl"];
244 + };
245 +
246 +
247 }
248
249