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 4, 2024
1 parent fd23737 commit adfa123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
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-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

0 comments on commit adfa123

Please sign in to comment.