We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a6623c commit 271da6cCopy full SHA for 271da6c
1 file changed
.github/workflows/test.yml
@@ -33,8 +33,16 @@ jobs:
33
34
- name: Install latest stuff from GitHub
35
run: |
36
- ros install melisgl/autoload melisgl/named-readtables melisgl/dref \
37
- melisgl/mgl-pax/no-swank
+ # KLUDGE: 'ros install' wants to compile things immediately
+ # after downloading, but there are circular dependencies on
38
+ # the repository level. There are no circular dependencies
39
+ # at the ASDF level though, so let's just clone everything
40
+ # before compiling.
41
+ cd ~/.roswell/local-projects/
42
+ git clone --depth 1 https://github.com/melisgl/autoload
43
+ git clone --depth 1 https://github.com/melisgl/named-readtables
44
+ git clone --depth 1 https://github.com/melisgl/dref
45
+ git clone --depth 1 --branch no-swank https://github.com/melisgl/mgl-pax
46
47
- name: Run tests
48
env:
0 commit comments