Author: eelco
Date: Mon Dec  6 19:09:40 2010
New Revision: 25018
URL: https://svn.nixos.org/websvn/nix/?rev=25018&sc=1

Log:


Modified:
   hydra/branches/gc/doc/dev-notes.txt

Modified: hydra/branches/gc/doc/dev-notes.txt
==============================================================================
--- hydra/branches/gc/doc/dev-notes.txt Mon Dec  6 19:03:32 2010        (r25017)
+++ hydra/branches/gc/doc/dev-notes.txt Mon Dec  6 19:09:40 2010        (r25018)
@@ -144,6 +144,12 @@
   delete from builds where finished = 0 and not exists (select 1 from 
buildschedulinginfo s where s.id = builds.id and busy = 1);
 
 
+* Delete all jobs in a certain jobset that are not current (i.e., from
+  an older evaluation):
+
+  delete from builds where finished = 0 and iscurrent = 0 and project = 
'nixpkgs' and jobset = 'stdenv' and not exists (select 1 from 
buildschedulinginfo s where s.id = builds.id and busy = 1);
+
+  
 * Installing deps.nix in a profile for testing:
 
   $ nix-env -p $NIX_USER_PROFILE_DIR/hydra-deps -f deps.nix -i \* --arg pkgs 
'import /etc/nixos/nixpkgs {}'
@@ -172,3 +178,5 @@
 * Evaluating the NixOS Hydra jobs:
 
   $ ./hydra_eval_jobs ~/Dev/nixos-wc/release.nix --arg nixpkgs '{outPath = 
/home/eelco/Dev/nixpkgs-wc;}' --arg nixosSrc '{outPath = 
/home/eelco/Dev/nixos-wc; rev = 1234;}' --arg services '{outhPath = 
/home/eelco/services-wc;}' --argstr system i686-linux --argstr system 
x86_64-linux --arg officialRelease false
+
+
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to