mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
dendrite: disable tests on x86_64-darwin
This commit is contained in:
parent
4fb158accf
commit
afad8bd6fc
@ -1,5 +1,12 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, nix-update-script
|
||||
, nixosTests, postgresql, postgresqlTestHook }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, nix-update-script
|
||||
, nixosTests
|
||||
, postgresql
|
||||
, postgresqlTestHook
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "matrix-dendrite";
|
||||
@ -44,6 +51,9 @@ buildGoModule rec {
|
||||
rm roomserver/internal/input/input_test.go
|
||||
'';
|
||||
|
||||
# PostgreSQL's request for a shared memory segment exceeded your kernel's SHMALL parameter
|
||||
doCheck = !(stdenv.isDarwin && stdenv.isx86_64);
|
||||
|
||||
passthru.tests = {
|
||||
inherit (nixosTests) dendrite;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user