Skip to content

Commit

Permalink
Merge pull request #8 from 40ants/update-deps
Browse files Browse the repository at this point in the history
Update deps and CI workflow.
  • Loading branch information
svetlyak40wt authored Mar 11, 2024
2 parents d1e1dab + 1be2df3 commit dffb6b9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v1"
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v1",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "docs-builder",
"asdf-version": "3.3.5.1"
"asdf-version": "3.3.5.1",
"cache": "true"
}
},
{
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,30 @@
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v1"
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v1",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "docs-builder",
"asdf-version": "3.3.5.1"
"asdf-version": "3.3.5.1",
"cache": "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"
},
{
"name": "Update Qlot",
"run": "qlot update || qlot update",
"run": "qlot update --no-deps",
"shell": "bash"
},
{
"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
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 "2023-02-15"))
:version "2023-10-21"))
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
:version "20230605020501"))
:version "20240311030500"))
("sly" .
(:class qlot/source/github:source-github
:initargs (:repos "svetlyak40wt/sly" :ref nil :branch "patches" :tag nil)
Expand Down
2 changes: 2 additions & 0 deletions src/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
(defworkflow linter
:on-push-to "master"
:on-pull-request t
:cache t
:jobs ((40ants-ci/jobs/linter:linter
:asdf-version *asdf-version*)))


(defworkflow docs
:on-push-to "master"
:on-pull-request t
:cache t
:jobs ((40ants-ci/jobs/docs:build-docs
;; There are still a few warnings which should be shown.
;; And I have no time to fix this.
Expand Down

0 comments on commit dffb6b9

Please sign in to comment.