summaryrefslogtreecommitdiff
path: root/tests/ci-runner.el
blob: 5b3397fed2dd2f5909c57c7bfc1cbf2a2f350e34 (plain)
1
2
3
4
5
6
7
8
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)))