Unverified Commit 32366eda authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

zvbi: disable tests on musl (#503355)

parents 8278c549 ad64bdfc
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -49,7 +49,12 @@ stdenv.mkDerivation (finalAttrs: {

  enableParallelBuilding = true;

  doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform && !stdenv.hostPlatform.isDarwin;
  doCheck =
    stdenv.buildPlatform.canExecute stdenv.hostPlatform
    && !stdenv.hostPlatform.isDarwin
    &&
      # musl does not support TZDIR, used by the tzdata setup hook.
      !stdenv.hostPlatform.isMusl;

  passthru = {
    tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;