Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
|
76212e4597 | ||
|
37d6351ff1 | ||
|
0bbf4764f4 | ||
|
c5aaeb1ffc | ||
|
55b7212e25 | ||
|
9467768eb5 |
5 changed files with 31 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
|||
/env/
|
||||
/.qlot
|
||||
/README
|
||||
*.fasl
|
||||
|
|
12
ChangeLog.md
12
ChangeLog.md
|
@ -2,6 +2,18 @@
|
|||
|
||||
# ChangeLog
|
||||
|
||||
<a id="x-28PROJECT-DOCS-2FCHANGELOG-3A-3A-7C4-2E2-2E1-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>
|
||||
|
||||
## 4.2.1 (2024-12-15)
|
||||
|
||||
Fixed the way how we set dynamic-space-size.
|
||||
|
||||
<a id="x-28PROJECT-DOCS-2FCHANGELOG-3A-3A-7C4-2E2-2E0-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>
|
||||
|
||||
## 4.2.0 (2024-12-14)
|
||||
|
||||
Input variable `dynamic-space-size` was added. It can be used to default set memory size for `SBCL`.
|
||||
|
||||
<a id="x-28PROJECT-DOCS-2FCHANGELOG-3A-3A-7C4-2E1-2E0-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>
|
||||
|
||||
## 4.1.0 (2024-05-17)
|
||||
|
|
|
@ -8,6 +8,10 @@ inputs:
|
|||
required: false
|
||||
default: v23.10.14.114
|
||||
|
||||
dynamic-space-size:
|
||||
description: 'If given, then will be used to change dynamic space size for SBCL. This value will be written to ~/.roswell/config'
|
||||
required: false
|
||||
|
||||
asdf-system:
|
||||
description: 'ASDF system to install'
|
||||
required: false
|
||||
|
@ -259,6 +263,11 @@ runs:
|
|||
curl -L https://raw.githubusercontent.com/roswell/roswell/master/scripts/install-for-ci.sh | bash -xeo pipefail
|
||||
fi
|
||||
|
||||
if [[ "${{ inputs.dynamic-space-size }}" != "" ]]; then
|
||||
echo ::group::Changing Dynamic Space Size in Roswell Config
|
||||
ros config set dynamic-space-size ${{ inputs.dynamic-space-size }}
|
||||
fi
|
||||
|
||||
echo ::endgroup::
|
||||
|
||||
- if: inputs.cache == 'false' || steps.roswell-cache-restore.outputs.cache-hit != 'true'
|
||||
|
|
|
@ -8,8 +8,13 @@
|
|||
(defchangelog (:ignore-words ("ASDF"
|
||||
"PATH"
|
||||
"CL"
|
||||
"SBCL"
|
||||
"HOME"))
|
||||
|
||||
(4.2.1 2024-12-15
|
||||
"Fixed the way how we set dynamic-space-size.")
|
||||
(4.2.0 2024-12-14
|
||||
"Input variable `dynamic-space-size` was added. It can be used to default set memory size for SBCL.")
|
||||
(4.1.0 2024-05-17
|
||||
"
|
||||
# Added
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
("quicklisp" .
|
||||
(:class qlot/source/dist:source-dist
|
||||
:initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
|
||||
:version "2023-10-21"))
|
||||
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
|
||||
:version "2024-10-12"))
|
||||
("ultralisp" .
|
||||
(:class qlot/source/dist:source-dist
|
||||
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
|
||||
:version "20240304201501"))
|
||||
:initargs (:distribution "https://dist.ultralisp.org" :%version :latest)
|
||||
:version "20241214090000"))
|
||||
("sly" .
|
||||
(:class qlot/source/github:source-github
|
||||
:initargs (:repos "svetlyak40wt/sly" :ref nil :branch "patches" :tag nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue