chore(tvix): re-enable {ca,}store-protos-go

This couldn't be enabled before until go get was able to fetch the
modules again.

Change-Id: I82db7d22e497661ea2a0c8a45c0c865fcc0a1f18
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9406
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Connor Brewster <cbrewster@hey.com>
This commit is contained in:
Florian Klink 2023-09-22 16:22:52 +03:00 committed by flokli
parent 2aa0c70245
commit e13c86d916
3 changed files with 22 additions and 30 deletions

View file

@ -109,18 +109,18 @@ in
};
# Builds and tests the code in castore/protos.
# castore-protos-go = pkgs.buildGoModule {
# name = "castore-golang";
# src = depot.third_party.gitignoreSource ./store/protos;
# vendorHash = "sha256-00000000000000000000000000000000000000000000";
# };
castore-protos-go = pkgs.buildGoModule {
name = "castore-golang";
src = depot.third_party.gitignoreSource ./store/protos;
vendorHash = "sha256-zRbMwhZvcDop8qDd0OrHeDJ+lVPKxwjKmlFbj8Ypy9g=";
};
# Builds and tests the code in store/protos.
# store-protos-go = pkgs.buildGoModule {
# name = "store-golang";
# src = depot.third_party.gitignoreSource ./store/protos;
# vendorHash = "sha256-00000000000000000000000000000000000000000000";
# };
store-protos-go = pkgs.buildGoModule {
name = "store-golang";
src = depot.third_party.gitignoreSource ./store/protos;
vendorHash = "sha256-zRbMwhZvcDop8qDd0OrHeDJ+lVPKxwjKmlFbj8Ypy9g=";
};
# Build the Rust documentation for publishing on docs.tvix.dev.
rust-docs = pkgs.stdenv.mkDerivation {
@ -147,8 +147,8 @@ in
};
meta.ci.targets = [
# "castore-protos-go"
# "store-protos-go"
"castore-protos-go"
"store-protos-go"
"shell"
"rust-docs"
];