forked from lix-project/hydra
parent
8b4f90b0d4
commit
e45bbfbef0
|
@ -10,11 +10,18 @@ sub process {
|
|||
|
||||
my $build = $c->stash->{build};
|
||||
|
||||
my $storeMode = $c->config->{store_mode} // "direct";
|
||||
my $channelUri =
|
||||
$storeMode eq "direct" ? $c->uri_for('/')
|
||||
: $storeMode eq "s3-binary-cache" ?
|
||||
($c->config->{binary_cache_public_uri} // ("https://" . $c->config->{binary_cache_s3_bucket} . ".s3.amazonaws.com/"))
|
||||
: die "Not supported.\n";
|
||||
|
||||
# FIXME: add multiple output support
|
||||
my $s = "NIXPKG1 http://invalid.org/"
|
||||
. " " . $build->nixname . " " . $build->system
|
||||
. " " . $build->drvpath . " " . $build->buildoutputs->find({name => "out"})->path
|
||||
. " " . $c->uri_for('/');
|
||||
. " " . $channelUri;
|
||||
|
||||
$c->response->body($s);
|
||||
|
||||
|
|
Loading…
Reference in a new issue