diff options
| author | Preston Pan <ret2pop@nullring.xyz> | 2026-03-15 18:50:46 -0700 |
|---|---|---|
| committer | Preston Pan <ret2pop@nullring.xyz> | 2026-03-15 18:50:46 -0700 |
| commit | edc7f724ff6b7b323fd06d7c3cbb2e56a2a214b8 (patch) | |
| tree | c9c06fcb0f8fe19b3a586fb2385d899e560af422 /tests/ci-runner.el | |
| parent | 10c9e7c106566f852f33f1eaac413a24ea89d448 (diff) | |
| parent | 48e818808429e98e7db1f78b3e10537d829d2861 (diff) | |
Merge branch 'feat/quic-and-other'
Diffstat (limited to 'tests/ci-runner.el')
| -rw-r--r-- | tests/ci-runner.el | 9 |
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))) |
