`code.tvl.fyi/tvix/store/protos` now points to a directory that only
contains the `.proto` files, while all golang tooling and .pb.go files
live in tvix/store-go.
As discussed in
fc5d155c
_1bd38e3a/, the amount
of people currently using this is still small, so rename the go.mod now,
while it doesn't yet hurt.
Also, use code.tvl.fyi/tvix/castore-go instead of code.tvl.fyi/tvix/
castore/protos, to make use of cl/9791.
Change-Id: I9ea89957d7c29dfae4c893b9aae8ac8a0bad2d8e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9792
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
regenerate = pkgs.writeShellScriptBin "regenerate" ''
|
|
(cd $(git rev-parse --show-toplevel)/tvix/store-go && rm *.pb.go && cp ${depot.tvix.store.protos.go-bindings}/*.pb.go . && chmod +w *.pb.go)
|
|
'';
|
|
in
|
|
(pkgs.buildGoModule {
|
|
name = "store-go";
|
|
src = depot.third_party.gitignoreSource ./.;
|
|
vendorHash = "sha256-EoxvI1J+w0R+oACAVx9FhUG5VhDyzXuN2Vu2iEhgh94=";
|
|
}).overrideAttrs (_: {
|
|
meta.ci.extraSteps = {
|
|
check = {
|
|
label = ":water_buffalo: ensure generated protobuf files match";
|
|
needsOutput = true;
|
|
command = pkgs.writeShellScript "pb-go-check" ''
|
|
${regenerate}
|
|
if [[ -n "$(git status --porcelain -unormal)" ]]; then
|
|
echo "-----------------------------"
|
|
echo ".pb.go files need to be updated, mg run //tvix/store-go/generate"
|
|
echo "-----------------------------"
|
|
git status -unormal
|
|
exit 1
|
|
fi
|
|
'';
|
|
alwaysRun = true;
|
|
};
|
|
};
|
|
passthru.regenerate = regenerate;
|
|
})
|