summaryrefslogtreecommitdiff
path: root/tests/ci-runner.el
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-14 11:56:02 -0700
committerPreston Pan <ret2pop@nullring.xyz>2026-03-14 11:56:02 -0700
commit1f04e4d007d7fd56d997e2148b7d01db444f0495 (patch)
tree75a7deaf92d50eb28359893ecdf15d496974e683 /tests/ci-runner.el
parent429f7718aee4e6cab23527a481fe25f801a621aa (diff)
remove headers
Diffstat (limited to 'tests/ci-runner.el')
-rw-r--r--tests/ci-runner.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ci-runner.el b/tests/ci-runner.el
new file mode 100644
index 0000000..5b3397f
--- /dev/null
+++ b/tests/ci-runner.el
@@ -0,0 +1,9 @@
+(condition-case err
+ (progn
+ (load-file (expand-file-name "tests/ci-build.el" default-directory))
+ (load-file (expand-file-name "init.el" (getenv "NIXMACS_DIR")))
+ (load-file (expand-file-name "tests/ci-build-stage-two.el" default-directory))
+ (kill-emacs 0))
+ (error
+ (princ (format "\nFATAL CI ERROR: %s\n" (error-message-string err)) 'external-debugging-output)
+ (kill-emacs 1)))