From 314bf46e9b33bb1dd5bcdd8d1eca9f6d2632ad3a Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Thu, 7 May 2026 23:44:22 +0300 Subject: [PATCH 1/6] Disabled ngrok --- action.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index f232fd0..c55565a 100644 --- a/action.yml +++ b/action.yml @@ -50,9 +50,9 @@ 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:" @@ -60,11 +60,18 @@ runs: cat qlfile echo "====================================" fi - + + echo "Before qlot update" + which qlot qlot update --no-deps + 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 @@ -72,6 +79,7 @@ runs: 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:: From 4771491326fe2aa2d1ddd2c7c437c99a20bedbb0 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 8 May 2026 00:00:46 +0300 Subject: [PATCH 2/6] Show qlot version --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index c55565a..02f9c83 100644 --- a/action.yml +++ b/action.yml @@ -63,6 +63,7 @@ runs: echo "Before qlot update" which qlot + qlot --version qlot update --no-deps echo "Before ros install" From 6b9e1405d9df2a36f1197826ad59cb978b7bff19 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 8 May 2026 00:20:59 +0300 Subject: [PATCH 3/6] Show path to qlot --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 02f9c83..f9b439f 100644 --- a/action.yml +++ b/action.yml @@ -63,7 +63,9 @@ runs: echo "Before qlot update" which qlot - qlot --version + # qlot --version + qlot exec ros --eval '(format t "Qlot is here: ~A~%" (ql:where-is-system :qlot))' --quit + qlot update --no-deps echo "Before ros install" From 50ed8ba81dcdb9fbc267caabe5f0be46a1b6c0d1 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 8 May 2026 00:27:47 +0300 Subject: [PATCH 4/6] Try install first --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index f9b439f..8af94de 100644 --- a/action.yml +++ b/action.yml @@ -66,6 +66,7 @@ runs: # 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 echo "Before ros install" From 45fdda4970b9e213b959fd00f580fb78ff5637b0 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 8 May 2026 00:42:55 +0300 Subject: [PATCH 5/6] Use jobs 1 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 8af94de..8ee16c3 100644 --- a/action.yml +++ b/action.yml @@ -66,8 +66,8 @@ runs: # 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 + # qlot install --no-deps + qlot update --no-deps --jobs 1 echo "Before ros install" which qlot From 3b9ce898d1b985328aa94d3518381b67fc9584d8 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Fri, 8 May 2026 00:49:50 +0300 Subject: [PATCH 6/6] Use --debug --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 8ee16c3..69a7ee6 100644 --- a/action.yml +++ b/action.yml @@ -67,7 +67,7 @@ runs: 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 + qlot update --no-deps --jobs 1 --debug echo "Before ros install" which qlot