8f57ca92bd
Nobody has actually done any experimentation with typed Go, so we're getting rid of it for now - it's causing annoying IFD during build graph generation. Change-Id: Ibac3dea98ebed1b3ee08acda184d24c500cf695d Reviewed-on: https://cl.tvl.fyi/c/depot/+/2458 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: Profpatsch <mail@profpatsch.de>
10 lines
270 B
Nix
10 lines
270 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.buildGo.program {
|
|
name = "besadii";
|
|
srcs = [ ./main.go ];
|
|
}
|