File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,17 @@ build:
2828unix-compile :
2929 @$(CASK ) $(EMACS ) -Q --batch \
3030 -L . \
31- --eval ' (setq byte-compile-error-on-warn t treemacs-no-load-time-warnings t)' \
31+ --eval ' (setq treemacs-no-load-time-warnings t)' \
32+ --eval ' (setq byte-compile-error-on-warn t)' \
3233 -f batch-byte-compile $(DAP-GENERAL ) $(DAP-CLIENTS )
3334
3435windows-compile :
3536 @$(CASK ) $(EMACS ) -Q --batch \
37+ --eval ' (setq emacs-lsp-ci t)' \
3638 -l test/windows-bootstrap.el \
3739 -L . \
38- --eval ' (setq byte-compile-error-on-warn t treemacs-no-load-time-warnings t)' \
40+ --eval ' (setq treemacs-no-load-time-warnings t)' \
41+ --eval ' (setq byte-compile-error-on-warn t)' \
3942 -f batch-byte-compile $(DAP-GENERAL ) $(DAP-CLIENTS )
4043
4144unix-ci : clean build unix-compile unix-test
@@ -51,6 +54,7 @@ unix-test:
5154
5255windows-test :
5356 @$(EMACS ) -Q --batch \
57+ --eval ' (setq emacs-lsp-ci t)' \
5458 -l test/windows-bootstrap.el \
5559 -L . \
5660 $(LOAD-TEST-FILES ) \
Original file line number Diff line number Diff line change 3838
3939 (mapc (lambda (pkg )
4040 (unless (package-installed-p pkg)
41- (package-install pkg)))
41+ (package-refresh-contents ) ( package- install pkg)))
4242 pkgs)
4343
4444 (add-hook 'kill-emacs-hook
45- `(lambda () (delete-directory , user-emacs-directory t ))))
45+ `(lambda ()
46+ (unless (boundp 'emacs-lsp-ci )
47+ (delete-directory , user-emacs-directory t )))))
4648
4749; ;; windows-bootstrap.el ends here
You can’t perform that action at this time.
0 commit comments