about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/tektoncd-cli
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2022-11-01 11:34:01 +0000
committer06kellyjac <dev@j-k.io>2022-11-01 11:34:01 +0000
commit740aa4255b610fa65dd1211910e29408c10e91cf (patch)
tree03f68a636d76e3dc2c598ff93e0ebb773bf922e4 /pkgs/applications/networking/cluster/tektoncd-cli
parent768f41a1e4b97f91d286b2e7ac2d16c9ec3d6628 (diff)
tektoncd-cli: 0.24.1 -> 0.27.0
Diffstat (limited to 'pkgs/applications/networking/cluster/tektoncd-cli')
-rw-r--r--pkgs/applications/networking/cluster/tektoncd-cli/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/tektoncd-cli/default.nix b/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
index c3c6355cd0cfc..0362095bce697 100644
--- a/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
+++ b/pkgs/applications/networking/cluster/tektoncd-cli/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "tektoncd-cli";
-  version = "0.24.1";
+  version = "0.27.0";
 
   src = fetchFromGitHub {
     owner = "tektoncd";
     repo = "cli";
     rev = "v${version}";
-    sha256 = "sha256-8dCmORfTMFHSyc9FOpL01ywxGcH3uolzD2aOtyy191Q=";
+    sha256 = "sha256-zLPZueKdUNauIzqXOV773SZ/RWg7UuMNeJHr7z6ZJ+E=";
   };
 
   vendorSha256 = null;
@@ -17,14 +17,15 @@ buildGoModule rec {
 
   nativeBuildInputs = [ installShellFiles ];
 
-  # third_party/VENDOR-LICENSE breaks build/check as go files are still included
-  # docs is a tool for generating docs
-  excludedPackages = [ "third_party" "cmd/docs" ];
+  subPackages = [ "cmd/tkn" ];
 
   preCheck = ''
     # some tests try to write to the home dir
     export HOME="$TMPDIR"
 
+    # run all tests
+    unset subPackages
+
     # the tests expect the clientVersion ldflag not to be set
     unset ldflags