88317aea0d
This was used previously when build granularity was besadii's task, which it no longer is. Change-Id: I6df2db1ed4730a7953199b7b48aa9ad916418b22 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1853 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
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 ];
|
|
}
|