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,
|
||||
emptyDirectory,
|
||||
emacs,
|
||||
lib,
|
||||
linkFarm,
|
||||
runCommand,
|
||||
|
|
@ -34,6 +35,7 @@ let
|
|||
common = {
|
||||
doomLocalDir = "~/.local/share/nix-doom-unstraightened";
|
||||
experimentalFetchTree = true;
|
||||
emacs = emacs.override { withNativeCompilation = false; };
|
||||
};
|
||||
mkDoom = args: (makeDoomPackages (common // args)).doomEmacs;
|
||||
mkDoomDir = args: writeTextDir "init.el" (toInit args);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue