Skip to content

Commit

Permalink
jitsi-meet: Only run smoke test on Linux
Browse files Browse the repository at this point in the history
The smoke test requires running Jitsi Videobridge and Jicofo, which are
Linux-only and don’t work on macos.
  • Loading branch information
ntninja committed Sep 30, 2024
1 parent 5658158 commit 40c1971
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/servers/web-apps/jitsi-meet/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

passthru.tests = {
# Test requires running Jitsi Videobridge and Jicofo which are Linux-only
passthru.tests = lib.optionalAttrs stdenv.isLinux {
single-host-smoke-test = nixosTests.jitsi-meet;
};

Expand Down

0 comments on commit 40c1971

Please sign in to comment.