trying to specify only a part in the script.
This commit is contained in:
parent
fa5b1aa93e
commit
2f7b12f212
2 changed files with 15 additions and 14 deletions
12
.github/actions/setup/action.yml
vendored
12
.github/actions/setup/action.yml
vendored
|
@ -80,7 +80,17 @@ runs:
|
|||
|
||||
- name: Run a custom Roswell Script
|
||||
shell: ros -Q -- {0} "$@"
|
||||
run: ${{ inputs.custom-code }}
|
||||
run: |
|
||||
(progn
|
||||
(ros:ensure-asdf)
|
||||
#+quicklisp
|
||||
(ql:quickload '() :silent t))
|
||||
|
||||
(defun main (args)
|
||||
(declare (ignorable args))
|
||||
(format t "::group::Custom Roswell Script New~%")
|
||||
${{ inputs.custom-code }}
|
||||
(format t "::endgroup::~%"))
|
||||
|
||||
# - name: Test
|
||||
# shell: bash
|
||||
|
|
17
.github/workflows/install.yml
vendored
17
.github/workflows/install.yml
vendored
|
@ -66,19 +66,10 @@ jobs:
|
|||
- uses: 40ants/cl-info/.github/actions/setup@custom-action
|
||||
with:
|
||||
custom-code: |
|
||||
(progn
|
||||
(ros:ensure-asdf)
|
||||
#+quicklisp
|
||||
(ql:quickload '() :silent t))
|
||||
|
||||
(defun main (args)
|
||||
(declare (ignore args))
|
||||
(format t "::group::Custom Roswell Script~%")
|
||||
(format t "Lisp: ~A ~A~%ASDF: ~A~%"
|
||||
(lisp-implementation-version)
|
||||
(lisp-implementation-type)
|
||||
(asdf:asdf-version))
|
||||
(format t "::endgroup::~%"))
|
||||
(format t "Lisp: ~A ~A~%ASDF: ~A~%"
|
||||
(lisp-implementation-version)
|
||||
(lisp-implementation-type)
|
||||
(asdf:asdf-version))
|
||||
|
||||
# - name: Start SSH session
|
||||
# uses: luchihoratiu/debug-via-ssh@main
|
||||
|
|
Loading…
Reference in a new issue