commit 8a80a99ae396d80bebf8df3f39f171e3217c6c54
parent 4563aeeeb1d587981ae88343db118033ca5b5786
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Tue, 6 Jul 2021 04:00:19 +0100
Try installing an older version of macrotypes which now requires v7.0
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -80,6 +80,11 @@ jobs:
if test "$RACKET_VERSION" = "6.9" || test "$RACKET_VERSION" = "6.10"; then
raco pkg install 'https://github.com/samth/fancy-app.git#d137c55d5d29f4bc0dd2c8f316dc30521c1cb592'
fi
+ - name: Install older version of fancy-app for Racket < 7.0
+ run: |
+ if test "$RACKET_VERSION" = "6.9" || test "$RACKET_VERSION" = "6.10" || test "$RACKET_VERSION" = "6.10.1" || test "$RACKET_VERSION" = "6.11" || test "$RACKET_VERSION" = "6.12"; then
+ raco pkg install 'https://github.com/stchang/macrotypes.git#e81f9abc5b88a7c30d14d8591038679c1db013c0'
+ fi
- name: Install some of the other dependencies (might not be necessary)
run: |
raco pkg install --deps search-auto -j 2 type-expander # Start installing stuff, continue later to avoid timeout.