Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,40 @@ runs:
echo 'github docs-builder 40ants/docs-builder' >> qlfile
fi

if ! grep -q ngrok qlfile; then
echo 'github ngrok 40ants/ngrok' >> qlfile
fi
# if ! grep -q ngrok qlfile; then
# echo 'github ngrok 40ants/ngrok' >> qlfile
# fi

if [ -n "${RUNNER_DEBUG:-}" ]; then
echo "Qlfile's content after modification:"
echo "===================================="
cat qlfile
echo "===================================="
fi

qlot update --no-deps

echo "Before qlot update"
which qlot
# qlot --version
qlot exec ros --eval '(format t "Qlot is here: ~A~%" (ql:where-is-system :qlot))' --quit

# qlot install --no-deps
qlot update --no-deps --jobs 1 --debug

echo "Before ros install"
which qlot
qlot exec ros install docs-builder
qlot exec ros install ngrok

echo "After ros install"
which qlot
# qlot exec ros install ngrok
echo ::endgroup::
- name: Build Docs
shell: bash
run: |
set -Eeuo pipefail
echo ::group::Build Docs

which qlot
qlot exec build-docs --error-on-warnings "${{ inputs.error-on-warnings }}" "${{ inputs.asdf-system }}" output.dir

echo ::endgroup::
Expand Down