Skip to content

Commit

Permalink
Merge pull request #17 from 40ants/fix-docs-building
Browse files Browse the repository at this point in the history
Updated deps trying to fix documentation building.
  • Loading branch information
svetlyak40wt authored Aug 21, 2023
2 parents 46599eb + b6b9759 commit 64e4d39
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
{
Expand All @@ -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"
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@
]
}
}
}
}
4 changes: 2 additions & 2 deletions qlfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down

0 comments on commit 64e4d39

Please sign in to comment.