From adfa12370de0ee696f0cb87c5a421e99893f77fa Mon Sep 17 00:00:00 2001 From: "Paul M. Rodriguez" Date: Sat, 4 May 2024 15:30:08 -0500 Subject: [PATCH] Print backtrace on clasp CI errors --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f05db9..e7e7488 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,9 +37,9 @@ jobs: env: HOME: /home/app run: | - clasp --eval "(handler-case (ql:quickload :serapeum) (error () (uiop:quit 1)))" --quit + clasp --eval "(handler-case (ql:quickload :serapeum) (error () (uiop:print-backtrace) (uiop:quit 1)))" --quit - name: Test Serapeum env: HOME: /home/app run: | - clasp --eval "(handler-case (asdf:test-system :serapeum) (error () (uiop:quit 1)))" --quit + clasp --eval "(handler-case (asdf:test-system :serapeum) (error () (uiop:print-backtrace) (uiop:quit 1)))" --quit