From a1e1e5b2a7115454e50751fbbe6382addf232b95 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 14 Aug 2022 12:01:07 +0800 Subject: [PATCH] lunatic: fix hydra build --- pkgs/development/interpreters/lunatic/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/interpreters/lunatic/default.nix b/pkgs/development/interpreters/lunatic/default.nix index e68240bb041a..9e716694759c 100644 --- a/pkgs/development/interpreters/lunatic/default.nix +++ b/pkgs/development/interpreters/lunatic/default.nix @@ -17,6 +17,11 @@ rustPlatform.buildRustPackage rec { buildInputs = lib.optional stdenv.isDarwin Security; + checkFlags = [ + # requires simd support which is not always available on hydra + "--skip=state::tests::import_filter_signature_matches" + ]; + meta = with lib; { description = "An Erlang inspired runtime for WebAssembly"; homepage = "https://lunatic.solutions";