commit 213fa8b57b867dbcef3b7749744b473b6f805a64
parent 0d76a105628d65046235b6c3274fda67a612f486
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Sun, 4 Jul 2021 04:20:56 +0100
Debug why raco cannot be found after installation
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -35,6 +35,7 @@ jobs:
- name: Add to $PATH
run: |
printf %s "$HOME/.racket/bin" >> "$GITHUB_PATH"
+ printf %s "/usr/racket/bin" >> "$GITHUB_PATH"
- name: Print environment variables
run: |
echo "$HOME"
@@ -46,7 +47,8 @@ jobs:
- name: Install Racket
run: |
curl -L https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh | bash
- find /home/runner/.racket -maxdepth 3
+ find /home/runner/ -maxdepth 3 || true
+ find /usr/racket -maxdepth 3 || true
- name: Install Scribble
# Install custom version of scribble-lib which includes fixes for bibted-related problems which have not merged upstream yet. Also includes extended support for highlighting Racket code.
run: raco pkg install --force --name scribble-lib https://github.com/jsmaniac/hyper-literate.git?path=scribble-lib#my-changes