* Store the jobset's nixExprPath and nixExprInput fields in a build to
[?]
Oct 26, 2009, 1:33 PM
QNDXPVCIRJRPFTYNRDCQC5KORSYB5FPX7IAM6UGACWCU6HWYT6CACDependencies
- [2]
3HCBU2FA - [3]
FHF6IZJQ* Basic release management: releases are now dynamically computed as - [4]
TWVSALRL* Allow the maximum number of concurrent builds per platform to be - [5]
WYN733ST* Store build duration, handle cached builds. - [6]
ZEHSSVFG - [7]
67P45PY4 - [8]
KOTB7BKV - [9]
GNIEG2GC* Disambiguate jobs by jobset name. I.e. jobs with the same name in - [10]
M552HLIA* Support variant builds. - [11]
P5X4P6VK* Renaming "release sets" to "views" (not finished yet). Having - [12]
GWCV3TQV* BuildInputs table: link to dependencies, include store paths. - [13]
IK53RV4V - [14]
SHBLLAVH* More global substitution. - [15]
BHZXGT2H* Channels: provide an index page that lists all the packages in the - [16]
VJHIHMEH* Store the meta.longDescription and meta.license attributes in the - [17]
J5UVLXOK* Start of a basic Catalyst web interface. - [18]
PHX2HIVG* Store info about the build inputs in the build record. - [19]
BVOPAMLS - [20]
DVNWJXWW* Generic declaration of build products. - [21]
ZVTSOVHN* Support Subversion checkouts. - [22]
R5D7DZPE - [23]
D3DIBMOK* For products that are directories (like manuals), allow a default - [24]
ECBA3GQO* Make the schema class names match the case of the SQL table names. - [25]
3E6IP3R3* Add the name of the jobset to ReleaseSetJobs, otherwise we can't - [26]
S6OISBQ3* Mark the "current" builds in a jobset, i.e. those corresponding to - [27]
SJLEZFC4check getHydraPath in stead of Envvar HYDRA_DBI directly - [28]
KN3VYE5P* Cleaned up the foreign key constraints. - [29]
37R34XJO* Negative caching: don't perform a build if a dependency already - [30]
RBNQKATL* Adding persistant releases. A release is a named set of builds. - [31]
B72GLND4 - [32]
4D4U5IPY* Allow jobsets to be disabled. - [33]
RU7AQO7U* Role-based access control. Only admins can create projects. Only - [34]
3ZCEPLNO - [35]
YTZOC7C5* Editing of jobset inputs. - [36]
6BLUKEQ2* Caching of "path" inputs, and fake a revision number for those. - [37]
EYNG4EL4* Regenerate the bindings from a clean sqlite database. - [38]
VCOSLZRP - [39]
AHTEIK7G* Added a maintainers field to the Builds table. - [40]
7YBYT2LQ - [41]
YAPITGB3* Boolean inputs. - [42]
TQKGQ5R3 - [43]
L2E6EVE2* Merged the Build and Job tables. - [44]
H7CNGK4O* Log evaluation errors etc. in the DB. - [45]
X27GNHDV* Basic job info in the database. - [46]
CMU3YKOU* Store the release name. - [47]
TLZ2SPBR - [48]
S66BOMVU* Added authentication. - [49]
CLJQCY2X* Store info about all the build actions and allow them to be - [50]
V4RNHJNR* Add a link to each project's homepage. Suggested by karltk. - [51]
LCKWLQW3* In Sqlite "release" is now a keyword, so use "release_" instead. - [52]
S5PV6IIM* Represent jobs explicitly in the DB. - [53]
BD3GRK4B* Get rid of "positive failures" and separate log phases. - [*]
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,