mirror of
https://github.com/fiddlerwoaroof/data-lens.git
synced 2025-11-08 18:26:32 +00:00
Compare commits
3 Commits
12e689eb52
...
cf6e27440c
| Author | SHA1 | Date | |
|---|---|---|---|
| cf6e27440c | |||
| 3f4b9bddda | |||
| 6795459b0e |
18
.github/workflows/test.yml
vendored
18
.github/workflows/test.yml
vendored
@ -20,19 +20,13 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: cachix/install-nix-action@v22
|
- uses: cachix/install-nix-action@v19
|
||||||
with:
|
with:
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- uses: cachix/cachix-action@v12
|
|
||||||
with:
|
|
||||||
name: data-lens
|
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
||||||
extraPullNames: nix-community
|
|
||||||
|
|
||||||
# Runs a set of commands using the runners shell
|
# Runs a set of commands using the runners shell
|
||||||
- name: setup deps
|
- name: setup deps
|
||||||
run: |
|
run: |
|
||||||
@ -68,9 +62,9 @@ jobs:
|
|||||||
sbcl --disable-debugger --no-userinit \
|
sbcl --disable-debugger --no-userinit \
|
||||||
--load "$HOME/quicklisp/setup.lisp" \
|
--load "$HOME/quicklisp/setup.lisp" \
|
||||||
--eval "(mapcar 'asdf:load-asd (directory \"*.asd\"))" \
|
--eval "(mapcar 'asdf:load-asd (directory \"*.asd\"))" \
|
||||||
--eval "(handler-case (ql:quickload :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \
|
--eval '(format *error-output* "~{~A~%~}" (asdf:registered-systems))' \
|
||||||
|
--eval "(handler-case (ql:quickload :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 41)))" \
|
||||||
|
--eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 42)))" \
|
||||||
--eval "(handler-case (ql:quickload :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \
|
--eval "(handler-case (ql:quickload :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 43)))" \
|
||||||
--eval "(handler-case (ql:quickload :data-lens/test) (error (c) (format t \"~a\" c) (uiop:quit 44)))" \
|
--eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 44)))" \
|
||||||
--eval "(handler-case (asdf:test-system :data-lens) (error (c) (format t \"~a\" c) (uiop:quit 45)))" \
|
|
||||||
--eval "(handler-case (asdf:test-system :data-lens/transducers) (error (c) (format t \"~a\" c) (uiop:quit 46)))" \
|
|
||||||
--quit
|
--quit
|
||||||
|
|||||||
Reference in New Issue
Block a user