From 6025242fc7bc8ef883547ef81959f271eb847083 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 21 Oct 2022 18:01:02 +0200 Subject: chore(buf): Use nixpkgs-provided buf The version of buf used is quite old. nixpkgs provides a more recent version, but it requires us to migrate config to the latest version. depot_scanner.proto doesn't honor some of the conventions, so we need allow_comment_ignores and drop a bunch of comments in there. Change-Id: Ic978fe92fb7c8471f58c137497528f18aad8f3ab Reviewed-on: https://cl.tvl.fyi/c/depot/+/7053 Reviewed-by: sterni Reviewed-by: tazjin Tested-by: tazjin --- nix/bufCheck/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix/bufCheck') diff --git a/nix/bufCheck/default.nix b/nix/bufCheck/default.nix index 039303ba68..25a8865d8d 100644 --- a/nix/bufCheck/default.nix +++ b/nix/bufCheck/default.nix @@ -3,7 +3,7 @@ { depot, pkgs, ... }: pkgs.writeShellScriptBin "ci-buf-check" '' - ${depot.third_party.bufbuild}/bin/buf check lint --input . + ${depot.third_party.nixpkgs.buf}/bin/buf lint . # Report-only - ${depot.third_party.bufbuild}/bin/buf check breaking --input "." --against-input "./.git#branch=canon" || true + ${depot.third_party.nixpkgs.buf}/bin/buf breaking . --against "./.git#ref=HEAD~1" || true '' -- cgit 1.4.1