Merge pull request #270774 from emilytrau/libbacktrace-musl

libbacktrace: disable tests on musl
This commit is contained in:
Emily Trau 2023-12-10 21:06:42 +11:00 committed by GitHub
commit 058faf128e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ stdenv.mkDerivation {
(lib.enableFeature enableShared "shared")
];
doCheck = stdenv.isLinux;
doCheck = stdenv.isLinux && !stdenv.hostPlatform.isMusl;
passthru = {
updateScript = unstableGitUpdater { };