Unverified Commit ce71b968 authored by Azat Bahawi's avatar Azat Bahawi
Browse files

werf: 1.2.167 -> 1.2.168

parent 89d52414
Loading
Loading
Loading
Loading
+15 −5
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@

buildGoModule rec {
  pname = "werf";
  version = "1.2.167";
  version = "1.2.168";

  src = fetchFromGitHub {
    owner = "werf";
    repo = "werf";
    rev = "v${version}";
    sha256 = "sha256-ddrNrRRol4x/14AUdmavkpbqXvI4XSWhWXu7MXrJ9D4=";
    hash = "sha256-/Shmnnpme1ffN7GMTryb4ddPlcAsruyWhFdjr1PJ3HM=";
  };

  vendorSha256 = "sha256-E5yDk48O7zze8QTeLQ999QmB8XLkpKNZ8JQ2wVRMGCU=";
  vendorHash = "sha256-E5yDk48O7zze8QTeLQ999QmB8XLkpKNZ8JQ2wVRMGCU=";

  proxyVendor = true;

@@ -29,6 +29,8 @@ buildGoModule rec {
  nativeBuildInputs = [ installShellFiles ];
  buildInputs = lib.optionals stdenv.isLinux [ btrfs-progs glibc.static ];

  CGO_ENABLED = if stdenv.isLinux then 1 else 0;

  ldflags = [
    "-s"
    "-w"
@@ -50,8 +52,16 @@ buildGoModule rec {
    "static_build"
  ];

  # There are no tests for cmd/werf.
  doCheck = false;
  preCheck = ''
    # Test all targets.
    unset subPackages

    # Remove tests that require external services.
    rm -rf \
      integration/suites \
      pkg/true_git/*test.go \
      test/e2e
  '';

  postInstall = ''
    installShellCompletion --cmd werf \