526295a71d
- Adjust to ecl 23.9.9 release
- Regenerate go protos after protoc-gen-go update
- Drop dhall fork which hasn't kept up with 1.42.*
- Address new clippy warnings:
- Variant naming of Error::ValidationError
- Simplify .try_into().unwrap()
- Drop unnecessary identity function
- Test module must be last in file
- Drop unused `pub use`
- Update agenix to 0.15.0. Current master has a installCheckPhase that
doesn't work with C++ Nix 2.3.*:
a23aa271be (commitcomment-137185861)
Change-Id: Ic29eef20d6fd1362ce1031364a5ca6b4edf195bd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10615
Reviewed-by: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Autosubmit: sterni <sternenseemann@systemli.org>
31 lines
1 KiB
Nix
31 lines
1 KiB
Nix
{ depot, pkgs, ... }:
|
|
|
|
let
|
|
regenerate = pkgs.writeShellScript "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-JAxjSI4efCwbAUbvS7AQ5ZbVlf3ebGDBzDFMTK7dvl4=";
|
|
}).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/regenerate"
|
|
echo "-----------------------------"
|
|
git status -unormal
|
|
exit 1
|
|
fi
|
|
'';
|
|
alwaysRun = true;
|
|
};
|
|
};
|
|
passthru.regenerate = regenerate;
|
|
})
|