Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-01-10 01:03:35 +00:00
committed by GitHub
52 changed files with 790 additions and 419 deletions
@@ -1,11 +1,11 @@
{ lib, buildGoModule, fetchFromGitHub }:
# SHA of ${version} for the tool's help output
let rev = "e03f9ee353717ccc5f58c902633553e34b2fe46a";
# SHA of ${version} for the tool's help output. Unfortunately this is needed in build flags.
let rev = "f6e19140201d6bf2f1274bf6567087bc25154210";
in
buildGoModule rec {
pname = "sonobuoy";
version = "0.19.0";
version = "0.20.0"; # Do not forget to update `rev` above
buildFlagsArray =
let t = "github.com/vmware-tanzu/sonobuoy";
@@ -17,7 +17,7 @@ buildGoModule rec {
'';
src = fetchFromGitHub {
sha256 = "1gw58a30akidk15wk8kk7f8lsyqr1q180j6fzr4462ahwxdbjgkr";
sha256 = "11qawsv82i1pl4mwfc85wb4fbq961bplvmygnjfm79m8z87863ri";
rev = "v${version}";
repo = "sonobuoy";
owner = "vmware-tanzu";
@@ -2,18 +2,19 @@
buildGoModule rec {
pname = "ipfs-cluster";
version = "0.13.0";
rev = "v${version}";
version = "unstable-2020-10-20";
vendorSha256 = "00fkyxxi4iz16v0j33270x8qrspqpsv9j6csnikjy0klyb038pfq";
vendorSha256 = "0abfhl4v4yqy89aqn13ymj4rw5zhr92a9fh1abgpkr19adnyrs3d";
doCheck = false;
patches = [
./test.patch
];
src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
inherit rev;
sha256 = "0jf3ngxqkgss5f1kifp5lp3kllb21jxc475ysl01ma8l3smqdvya";
rev = "c78f7839a2d5645806e01bfbf7af862600f8fbc4";
sha256 = "0fschpysma2piy2bfas56yapxm2cl6nj986ww3sp7ysldjzadmkk";
};
meta = with stdenv.lib; {
@@ -0,0 +1,12 @@
diff --git a/peer_manager_test.go b/peer_manager_test.go
index 521e754..cf0d777 100644
--- a/peer_manager_test.go
+++ b/peer_manager_test.go
@@ -76,6 +76,7 @@ func clusterAddr(c *Cluster) ma.Multiaddr {
}
func TestClustersPeerAdd(t *testing.T) {
+ t.Skip("test is disabld by nixos")
ctx := context.Background()
clusters, mocks, boot := peerManagerClusters(t)
defer shutdownClusters(t, clusters, mocks)