* Store the jobset's nixExprPath and nixExprInput fields in a build to
[?]
Oct 26, 2009, 1:33 PM
QNDXPVCIRJRPFTYNRDCQC5KORSYB5FPX7IAM6UGACWCU6HWYT6CACDependencies
- [2]
3HCBU2FA - [3]
BHZXGT2H* Channels: provide an index page that lists all the packages in the - [4]
J5UVLXOK* Start of a basic Catalyst web interface. - [5]
4D4U5IPY* Allow jobsets to be disabled. - [6]
37R34XJO* Negative caching: don't perform a build if a dependency already - [7]
RBNQKATL* Adding persistant releases. A release is a named set of builds. - [8]
S5PV6IIM* Represent jobs explicitly in the DB. - [9]
TWVSALRL* Allow the maximum number of concurrent builds per platform to be - [10]
3E6IP3R3* Add the name of the jobset to ReleaseSetJobs, otherwise we can't - [11]
SHBLLAVH* More global substitution. - [12]
3ZCEPLNO - [13]
CMU3YKOU* Store the release name. - [14]
VJHIHMEH* Store the meta.longDescription and meta.license attributes in the - [15]
BVOPAMLS - [16]
6BLUKEQ2* Caching of "path" inputs, and fake a revision number for those. - [17]
R5D7DZPE - [18]
ECBA3GQO* Make the schema class names match the case of the SQL table names. - [19]
S66BOMVU* Added authentication. - [20]
CLJQCY2X* Store info about all the build actions and allow them to be - [21]
TQKGQ5R3 - [22]
DVNWJXWW* Generic declaration of build products. - [23]
B72GLND4 - [24]
X27GNHDV* Basic job info in the database. - [25]
TLZ2SPBR - [26]
PHX2HIVG* Store info about the build inputs in the build record. - [27]
V4RNHJNR* Add a link to each project's homepage. Suggested by karltk. - [28]
7YBYT2LQ - [29]
YTZOC7C5* Editing of jobset inputs. - [30]
M552HLIA* Support variant builds. - [31]
ZEHSSVFG - [32]
H7CNGK4O* Log evaluation errors etc. in the DB. - [33]
VCOSLZRP - [34]
L2E6EVE2* Merged the Build and Job tables. - [35]
ZVTSOVHN* Support Subversion checkouts. - [36]
67P45PY4 - [37]
RU7AQO7U* Role-based access control. Only admins can create projects. Only - [38]
SJLEZFC4check getHydraPath in stead of Envvar HYDRA_DBI directly - [39]
P5X4P6VK* Renaming "release sets" to "views" (not finished yet). Having - [40]
GWCV3TQV* BuildInputs table: link to dependencies, include store paths. - [41]
BD3GRK4B* Get rid of "positive failures" and separate log phases. - [42]
EYNG4EL4* Regenerate the bindings from a clean sqlite database. - [43]
S6OISBQ3* Mark the "current" builds in a jobset, i.e. those corresponding to - [44]
IK53RV4V - [45]
YAPITGB3* Boolean inputs. - [46]
GNIEG2GC* Disambiguate jobs by jobset name. I.e. jobs with the same name in - [47]
AHTEIK7G* Added a maintainers field to the Builds table. - [48]
KN3VYE5P* Cleaned up the foreign key constraints. - [49]
KOTB7BKV - [50]
WYN733ST* Store build duration, handle cached builds. - [51]
FHF6IZJQ* Basic release management: releases are now dynamically computed as - [52]
D3DIBMOK* For products that are directories (like manuals), allow a default - [53]
LCKWLQW3* In Sqlite "release" is now a keyword, so use "release_" instead. - [*]
UUGBVEGY* Development notes. - [*]
N22GPKYT* Put info about logs / build products in the DB.
Change contents
- edit in doc/dev-notes.txt at line 103
alter table Builds add column nixExprInput text;alter table Builds add column nixExprPath text; - edit in src/lib/Hydra/Schema/Builds.pm at line 125
"nixexprinput",{data_type => "text",default_value => undef,is_nullable => 1,size => undef,},"nixexprpath",{data_type => "text",default_value => undef,is_nullable => 1,size => undef,}, - replacement in src/lib/Hydra/Schema/Builds.pm at line 189
# Created by DBIx::Class::Schema::Loader v0.04999_09 @ 2009-10-23 16:56:03# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:L+BuQvxJL8gG7jib1AAIrw# Created by DBIx::Class::Schema::Loader v0.04999_09 @ 2009-10-26 14:22:27# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qbNPA5NkENlZXILuE3OGkA - edit in src/script/hydra_scheduler.pl at line 307
, nixexprinput => $jobset->nixexprinput, nixexprpath => $jobset->nixexprpath - edit in src/sql/hydra.sql at line 137
-- Copy of the nixExprInput/nixExprPath fields of the jobset that-- instantiated this build. Needed if we want to clone this-- build.nixExprInput text,nixExprPath text,