summaryrefslogtreecommitdiff
path: root/tests/ci-build.el
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-31 02:23:16 -0700
committerPreston Pan <ret2pop@nullring.xyz>2026-03-31 02:23:16 -0700
commit131261c783e9a2f9a6342f7e341d5c263ce33c2d (patch)
treebc8618db69c3d12b570fc44ad243bc6003ba9049 /tests/ci-build.el
parente759183b27e3ce30a671596421e171b4e505c1db (diff)
fix website build; add new content
Diffstat (limited to 'tests/ci-build.el')
-rw-r--r--tests/ci-build.el16
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/ci-build.el b/tests/ci-build.el
index 68d8670..02827d8 100644
--- a/tests/ci-build.el
+++ b/tests/ci-build.el
@@ -1,9 +1,17 @@
+(setq debug-on-error t)
(setq inhibit-startup-screen t)
(setq inhibit-startup-message t)
(setq enable-local-variables :all)
-(defalias (quote yes-or-no-p) (lambda (&rest args) t))
-(defalias (quote y-or-n-p) (lambda (&rest args) t))
+(defalias 'yes-or-no-p
+ (lambda (prompt &rest args)
+ (princ (format "!!! EMACS PROMPTED YES/NO: %s\n" prompt) 'external-debugging-output)
+ t))
+
+(defalias 'y-or-n-p
+ (lambda (prompt &rest args)
+ (princ (format "!!! EMACS PROMPTED Y/N: %s\n" prompt) 'external-debugging-output)
+ t))
(setq message-log-max t)
(setq standard-output (quote external-debugging-output))
@@ -15,6 +23,7 @@
(setq system-username "ci-runner")
(setq system-fullname "Preston Pan") ;; needed for postamble
(setq system-gpgkey "00000000")
+(setq logo-file "~/monorepo/img/logo.webp")
(defun package-vc-install (&rest args) (message "blocked package-vc-install for %s" args))
(defun package-vc--unpack (&rest args) nil)
(setq package-archives nil)
@@ -41,6 +50,9 @@
(setq make-backup-files nil auto-save-default nil create-lockfiles nil)
(require 'catppuccin-theme)
+(add-to-list 'custom-theme-load-path
+ (file-name-directory (locate-library "catppuccin-theme")))
+
(setq catppuccin-flavor 'mocha)
(load-theme 'catppuccin t)