discourse: Forward the used system and pkgs attributes to the tests

The system attribute is otherwise deduced from the system the
evaluation runs on, which could be incorrect if using remote
builders.
This commit is contained in:
talyz
2021-12-23 10:34:27 +01:00
parent 1138af5637
commit ae77e2fb78
+5 -1
View File
@@ -313,7 +313,11 @@ let
enabledPlugins = plugins;
plugins = callPackage ./plugins/all-plugins.nix { inherit mkDiscoursePlugin; };
ruby = rubyEnv.wrappedRuby;
tests = import ../../../../nixos/tests/discourse.nix { package = pkgs.discourse.override args; };
tests = import ../../../../nixos/tests/discourse.nix {
inherit (stdenv) system;
inherit pkgs;
package = pkgs.discourse.override args;
};
};
};
in discourse