Experiment: run tests without nativecomp
Downside: needs to be disabled at the Emacs (not emacsWithPackages) level, so this builds Emacs. Upside: still seems to be faster, at least in limited local testing. And if CI caches Emacs this should be substantially faster there.
This commit is contained in:
parent
fa6fe4cf93
commit
6899c075ca
1 changed files with 2 additions and 0 deletions
|
|
@ -15,6 +15,7 @@
|
||||||
{
|
{
|
||||||
callPackages,
|
callPackages,
|
||||||
emptyDirectory,
|
emptyDirectory,
|
||||||
|
emacs,
|
||||||
lib,
|
lib,
|
||||||
linkFarm,
|
linkFarm,
|
||||||
runCommand,
|
runCommand,
|
||||||
|
|
@ -34,6 +35,7 @@ let
|
||||||
common = {
|
common = {
|
||||||
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
|
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
|
||||||
experimentalFetchTree = true;
|
experimentalFetchTree = true;
|
||||||
|
emacs = emacs.override { withNativeCompilation = false; };
|
||||||
};
|
};
|
||||||
mkDoom = args: (makeDoomPackages (common // args)).doomEmacs;
|
mkDoom = args: (makeDoomPackages (common // args)).doomEmacs;
|
||||||
mkDoomDir = args: writeTextDir "init.el" (toInit args);
|
mkDoomDir = args: writeTextDir "init.el" (toInit args);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue