prow: 0-unstable-2024-08-27 -> 0-unstable-2025-11-09 (#460953)
This commit is contained in:
@@ -2,23 +2,24 @@
|
|||||||
lib,
|
lib,
|
||||||
buildGoModule,
|
buildGoModule,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
git,
|
gitMinimal,
|
||||||
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "prow";
|
pname = "prow";
|
||||||
version = "0-unstable-2024-08-27";
|
version = "0-unstable-2025-11-09";
|
||||||
rev = "195f38540f39dd3ec95ca2d7086487ec19922e61";
|
rev = "98a0c9d48d175803e1c616b856f39362011abef3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
inherit rev;
|
||||||
|
|
||||||
owner = "kubernetes-sigs";
|
owner = "kubernetes-sigs";
|
||||||
repo = "prow";
|
repo = "prow";
|
||||||
hash = "sha256-/OhlJdxPa4rTuT7XIklx8vxprbENfasJYwiJxD4CeXY=";
|
hash = "sha256-ypSIWTktqTzi/BIx2IqMhpwjPxz06YNCfryzY5PwdTs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-bJ0P/rHp+0zB/Dtp3F3n4AN3xF/A5qoq3lCQVBK+L4w=";
|
vendorHash = "sha256-J/DQbAWKHQdE+V/uRuo6rAwGGpEq4OeV1NUpB27xJTg=";
|
||||||
|
|
||||||
# doCheck = false;
|
# doCheck = false;
|
||||||
|
|
||||||
@@ -62,7 +63,17 @@ buildGoModule rec {
|
|||||||
"cmd/webhook-server"
|
"cmd/webhook-server"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ git ];
|
nativeCheckInputs = [ gitMinimal ];
|
||||||
|
|
||||||
|
# Workaround for: panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted
|
||||||
|
# ref: https://github.com/NixOS/nix/pull/1646
|
||||||
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
updateScript = nix-update-script {
|
||||||
|
extraArgs = [ "--version=branch" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Kubernetes based CI/CD system developed to serve the Kubernetes community";
|
description = "Kubernetes based CI/CD system developed to serve the Kubernetes community";
|
||||||
|
|||||||
Reference in New Issue
Block a user