Hydra: Add support for maxSilent meta attribute (also already added timeout, but not implemented the actual timeout for the build yet)
This commit is contained in:
@ -541,6 +541,8 @@ sub checkBuild {
|
||||
, license => $buildInfo->{license}
|
||||
, homepage => $buildInfo->{homepage}
|
||||
, maintainers => $buildInfo->{maintainers}
|
||||
, maxsilent => $buildInfo->{maxSilent}
|
||||
, timeout => $buildInfo->{timeout}
|
||||
, nixname => $buildInfo->{nixName}
|
||||
, drvpath => $drvPath
|
||||
, outpath => $outPath
|
||||
|
@ -128,6 +128,20 @@ __PACKAGE__->table("Builds");
|
||||
is_nullable: 1
|
||||
size: undef
|
||||
|
||||
=head2 maxsilent
|
||||
|
||||
data_type: integer
|
||||
default_value: 3600
|
||||
is_nullable: 1
|
||||
size: undef
|
||||
|
||||
=head2 timeout
|
||||
|
||||
data_type: integer
|
||||
default_value: 36000
|
||||
is_nullable: 1
|
||||
size: undef
|
||||
|
||||
=head2 iscurrent
|
||||
|
||||
data_type: integer
|
||||
@ -261,6 +275,20 @@ __PACKAGE__->add_columns(
|
||||
is_nullable => 1,
|
||||
size => undef,
|
||||
},
|
||||
"maxsilent",
|
||||
{
|
||||
data_type => "integer",
|
||||
default_value => 3600,
|
||||
is_nullable => 1,
|
||||
size => undef,
|
||||
},
|
||||
"timeout",
|
||||
{
|
||||
data_type => "integer",
|
||||
default_value => 36000,
|
||||
is_nullable => 1,
|
||||
size => undef,
|
||||
},
|
||||
"iscurrent",
|
||||
{ data_type => "integer", default_value => 0, is_nullable => 1, size => undef },
|
||||
"nixexprinput",
|
||||
@ -435,8 +463,8 @@ __PACKAGE__->has_many(
|
||||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.05000 @ 2010-03-05 13:07:46
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sE2/zTcfETC8Eahh6NQDZA
|
||||
# Created by DBIx::Class::Schema::Loader v0.05000 @ 2010-05-26 09:25:50
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OApfteImw84nYhUvSUB4FA
|
||||
|
||||
use Hydra::Helper::Nix;
|
||||
|
||||
|
Reference in New Issue
Block a user