www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 0851cc36697ce6ef0b1bbcc8c0c4ac238226e316
parent 701795e09c6d3bc7f30465d306fa2ab57489dea0
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Tue,  6 Jul 2021 04:12:27 +0100

Don't prompt for installation of dependencies of turstile

Diffstat:
M.github/workflows/ci.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -78,12 +78,12 @@ jobs: - name: Install older version of fancy-app for Racket 6.9 and 6.10 run: | if test "$RACKET_VERSION" = "6.9" || test "$RACKET_VERSION" = "6.10"; then - raco pkg install 'https://github.com/samth/fancy-app.git#d137c55d5d29f4bc0dd2c8f316dc30521c1cb592' + raco pkg install --deps search-auto -j 2 'https://github.com/samth/fancy-app.git#d137c55d5d29f4bc0dd2c8f316dc30521c1cb592' fi - name: Install older version of turnstile (macrotypes) 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' + raco pkg install --deps search-auto -j 2 'https://github.com/stchang/macrotypes.git#e81f9abc5b88a7c30d14d8591038679c1db013c0' sed -i -e '/###REMOVE_BEFORE_7_0###/d' info.rkt fi - name: Install some of the other dependencies (might not be necessary)