From ed1919d315f0bb7fcc0cd2b16d4c9875a6d4ffe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Kryger?= Date: Tue, 12 Nov 2024 17:50:47 +0000 Subject: [PATCH] [try] split compilation --- .ci/compilation.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.ci/compilation.sh b/.ci/compilation.sh index c1e98b9a..3305012e 100755 --- a/.ci/compilation.sh +++ b/.ci/compilation.sh @@ -31,6 +31,21 @@ ${EMACS} -Q --batch \ (setq exordium--require-package-archives package-archives) (message "===Byte compilation start===") (batch-byte-compile))' \ - "${EMACS_DIR}"{init.el,{modules,themes}/*.el} + "${EMACS_DIR}"{init.el,modules/*.el} + +${EMACS} -Q --batch \ + --eval ' +(progn + (setq debug-on-error t + eval-expression-print-length 100 + edebug-print-length 500 + user-emacs-directory "'"${EMACS_DIR}"'" + exordium-spell-check nil + tree-sitter-langs--testing t) ; tree-sitter-langs is for pre Emacs-29 + (load-file "'"${EMACS_DIR}"'/init.el") + (setq exordium--require-package-archives package-archives) + (message "===Byte compilation start===") + (batch-byte-compile))' \ + "${EMACS_DIR}"themes/*.el cleanup