From fd6bc78a8522ed2456cc627c9a3cb76e6458f3ab Mon Sep 17 00:00:00 2001 From: cxxxr Date: Sun, 24 Sep 2023 23:01:50 +0900 Subject: [PATCH] fix generate-document.yml --- .github/workflows/generate-document.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/generate-document.yml b/.github/workflows/generate-document.yml index e55f85632..0a95c2334 100644 --- a/.github/workflows/generate-document.yml +++ b/.github/workflows/generate-document.yml @@ -23,23 +23,13 @@ jobs: run: | set -ex - # workaround for sbcl and log4cl combination problems - mkdir ~/common-lisp - cd ~/common-lisp - git clone https://github.com/sharplispers/log4cl.git - cd - - ros config set dynamic-space-size 2048 - - ros install lem-project/async-process lem - - export PATH=$HOME/.roswell/bin:$PATH - - cd $(ros -e '(princ (ql:where-is-system :lem))') + curl -L https://qlot.tech/installer | bash + export PATH="/home/runner/.qlot/bin:$PATH" document_file=docs/default-keybindings.md - ros -s lem -s lem/extensions -e "(lem-documentation-mode:generate-markdown-file \"${document_file}\" :command)" + qlot exec ros -s lem -s lem/extensions -e "(lem-documentation-mode:generate-markdown-file \"${document_file}\" :command)" if [ -z "$(git diff ${document_file})" ]; then exit 0