Skip to content

Commit

Permalink
Renamed asd files to prevent qlot from trying to process dependencies…
Browse files Browse the repository at this point in the history
… from these files.
  • Loading branch information
svetlyak40wt committed May 17, 2024
1 parent 13c403b commit 23c2927
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@
"uses": "40ants/setup-lisp@qlot-no-deps-mode",
"with": {
"asdf-system": "40ants-project-templates",
"cache": "true",
"qlot-no-deps": "true"

"cache": "true"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/jsonrpc-app.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
(make-pathname :directory '(:relative
"templates"
"jsonrpc-app"))
:renames '(("system.asd" . "{{ name }}.asd")
:renames '(("system.asd.template" . "{{ name }}.asd")
("roswell/app.ros" . "roswell/{{ name }}.ros")))
args))))
(apply #'call-next-method template new-args)))
Expand Down
2 changes: 1 addition & 1 deletion src/library.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Use 40ANTS-PROJECT-TEMPLATES:CREATE-LIBRARY function to generate a skeleton for
(:documentation "Should return a file object, which creates `{{ name }}.asd` file.")
(:method ((template library-template))
(make-file :40ants-project-templates
"library/system.asd"
"library/system.asd.template"
"{{ name }}.asd")))


Expand Down
2 changes: 1 addition & 1 deletion src/mixin/ci.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(setf (slot-value self 'files)
(list*
(make-file :40ants-project-templates
"mixin/ci/system.asd"
"mixin/ci/system.asd.template"
"{{ name }}-ci.asd")
(make-file :40ants-project-templates
"mixin/ci/ci.lisp"
Expand Down
2 changes: 1 addition & 1 deletion src/mixin/docs.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"mixin/docs/empty.md"
"ChangeLog.md")
(make-file :40ants-project-templates
"mixin/docs/system.asd"
"mixin/docs/system.asd.template"
"{{ name }}-docs.asd")
(make-file :40ants-project-templates
"mixin/docs/index.lisp"
Expand Down
2 changes: 1 addition & 1 deletion src/mixin/rove-tests.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
(setf (slot-value self 'files)
(list*
(make-file :40ants-project-templates
"mixin/rove-tests/system.asd"
"mixin/rove-tests/system.asd.template"
"{{ name }}-tests.asd")
(make-file :40ants-project-templates
"mixin/rove-tests/core.lisp"
Expand Down
2 changes: 1 addition & 1 deletion src/reblocks-app.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
(make-pathname :directory '(:relative
"templates"
"reblocks-app"))
:renames '(("system.asd" . "{{ name }}.asd")))
:renames '(("system.asd.template" . "{{ name }}.asd")))
args))))
(apply #'call-next-method template new-args)))

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 23c2927

Please sign in to comment.