diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3f4788..65b29de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,8 +61,8 @@ "if": "steps.cache.outputs.cache-hit != 'true'" }, { - "name": "Change dist to Ultralisp", - "run": "echo 'dist ultralisp http://dist.ultralisp.org' > qlfile", + "name": "Change dist to Ultralisp if qlfile does not exist", + "run": "if [[ ! -e qlfile ]]; then echo 'dist ultralisp http://dist.ultralisp.org' > qlfile; fi", "shell": "bash" }, { @@ -72,7 +72,7 @@ }, { "name": "Install SBLint wrapper", - "run": "qlot exec ros install 40ants-linter", + "run": "qlot exec ros install 40ants-asdf-system 40ants-linter", "shell": "bash" }, { diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index dfb9fbe..a8a5a83 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -71,4 +71,4 @@ ] } } -} +} \ No newline at end of file diff --git a/qlfile.lock b/qlfile.lock index a6b3ad6..dc3f84d 100644 --- a/qlfile.lock +++ b/qlfile.lock @@ -1,11 +1,11 @@ ("quicklisp" . (:class qlot/source/dist:source-dist :initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest) - :version "2022-11-07")) + :version "2023-06-18")) ("ultralisp" . (:class qlot/source/dist:source-dist :initargs (:distribution "http://dist.ultralisp.org" :%version :latest) - :version "20221112170500")) + :version "20230821153000")) ("bordeaux-threads" . (:class qlot/source/github:source-github :initargs (:repos "svetlyak40wt/bordeaux-threads" :ref nil :branch "fix-apiv2-for-no-threads" :tag nil) diff --git a/src/changelog.lisp b/src/changelog.lisp index e78a1fd..55c99d0 100644 --- a/src/changelog.lisp +++ b/src/changelog.lisp @@ -12,7 +12,7 @@ (0.10.1 2023-03-08 "- Fixed installation of the Linter. Now it depends on 40ANTS-ASDF-SYSTEM system.") (0.10.0 2022-11-10 - "- Now Linter does \"qlot install --no-deps\" and quickloads only those systems, which should be linted. + "- Now Linter does `qlot install --no-deps` and quickloads only those systems, which should be linted. - Also, 40ANTS-CI system now inherits from 40ANTS-ASDF-SYSTEM system.") (0.9.0 2022-11-10 "- Fixed warnings about `set-output` and [outdated Node.js versions](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/) in checkout and cache actions.")