Skip to content

Commit

Permalink
Print backtrace on clasp CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ruricolist committed May 5, 2024
1 parent fd23737 commit f2a1e69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-bind ((error (lambda (e) (uiop:print-backtrace :condition e) (uiop:quit 1)))) (ql:quickload :serapeum))" --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-bind ((error (lambda (e) (uiop:print-backtrace :condition e) (uiop:quit 1)))) (asdf:test-system :serapeum))" --quit

0 comments on commit f2a1e69

Please sign in to comment.