Skip to content

Commit

Permalink
[ci] use download-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Mar 28, 2024
1 parent 7561b2f commit b24df6c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .dependencies
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
("extensible-compound-types" :git "https://github.com/digikar99/extensible-compound-types")
("cl-form-types" :git "https://github.com/digikar99/cl-form-types")
("cl-form-types" :git "https://github.com/alex-gutev/cl-form-types")
("cl-environments" :git "https://github.com/alex-gutev/cl-environments")
14 changes: 12 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,18 @@ jobs:
ls -l
bash <(curl -s https://raw.githubusercontent.com/digikar99/lisp-travis-lite/master/run.sh)
# Testing it on the second load confirms that functionalities do not
# solely eval-when compile-toplevel, and that they persist across multiple loads.
- name: Download download-dependencies
run: |
git clone https://github.com/digikar99/download-dependencies $HOME/quicklisp/local-projects/download-dependencies
- name: Download dependencies
run: |
cl --eval '(ql:quickload "download-dependencies")' \
--eval '(push "~/" ql:*local-project-directories*)' \
--eval '(in-package :download-dependencies)' \
--eval '(let ((*dependencies-home* (first ql:*local-project-directories*))) (ensure-system "polymorphic-functions"))'
- name: Lite - Run Tests
run: |
cl --eval '(progn
Expand Down

0 comments on commit b24df6c

Please sign in to comment.