Merge pull request #267708 from NickCao/dendrite

dendrite: disable tests on x86_64-darwin

authored by Nick Cao and committed by GitHub e06c69dc 5d9be0d8

+12 -2
+12 -2
pkgs/servers/dendrite/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, nix-update-script 2 - , nixosTests, postgresql, postgresqlTestHook }: 3 4 buildGoModule rec { 5 pname = "matrix-dendrite"; ··· 43 # it passes in upstream CI and requires further investigation 44 rm roomserver/internal/input/input_test.go 45 ''; 46 47 passthru.tests = { 48 inherit (nixosTests) dendrite;
··· 1 + { lib 2 + , stdenv 3 + , buildGoModule 4 + , fetchFromGitHub 5 + , nix-update-script 6 + , nixosTests 7 + , postgresql 8 + , postgresqlTestHook 9 + }: 10 11 buildGoModule rec { 12 pname = "matrix-dendrite"; ··· 50 # it passes in upstream CI and requires further investigation 51 rm roomserver/internal/input/input_test.go 52 ''; 53 + 54 + # PostgreSQL's request for a shared memory segment exceeded your kernel's SHMALL parameter 55 + doCheck = !(stdenv.isDarwin && stdenv.isx86_64); 56 57 passthru.tests = { 58 inherit (nixosTests) dendrite;