c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
10 lines
276 B
Nix
10 lines
276 B
Nix
# This program is used as a Gerrit hook to trigger builds on
|
|
# Buildkite, Sourcegraph reindexing and other maintenance tasks.
|
|
{ ciBuilds, depot, ... }:
|
|
|
|
let
|
|
inherit (builtins) toFile toJSON;
|
|
in depot.nix.buildTypedGo.program {
|
|
name = "besadii";
|
|
srcs = [ ./main.go2 ];
|
|
}
|