Run ros script.
This commit is contained in:
parent
c2b884c3d0
commit
d40aed9446
3 changed files with 30 additions and 6 deletions
14
.github/actions/setup/action.yml
vendored
14
.github/actions/setup/action.yml
vendored
|
@ -65,12 +65,16 @@ runs:
|
||||||
#+quicklisp
|
#+quicklisp
|
||||||
(ql:quickload '() :silent t))
|
(ql:quickload '() :silent t))
|
||||||
|
|
||||||
(format t "Hello World!~%")
|
(defun main ()
|
||||||
|
(format t "Lisp: ~A ~A~%ASDF: ~A~%"
|
||||||
|
(lisp-implementation-version)
|
||||||
|
(lisp-implementation-type)
|
||||||
|
(asdf:asdf-version)))
|
||||||
|
|
||||||
- name: Test
|
# - name: Test
|
||||||
shell: bash
|
# shell: bash
|
||||||
run: |
|
# run: |
|
||||||
echo ${{ inputs.qlfile-template }} > qlfile
|
# echo ${{ inputs.qlfile-template }} > qlfile
|
||||||
# - name: Install Dependencies
|
# - name: Install Dependencies
|
||||||
# shell: bash
|
# shell: bash
|
||||||
# run: |
|
# run: |
|
||||||
|
|
20
.github/actions/setup/templater.ros
vendored
Executable file
20
.github/actions/setup/templater.ros
vendored
Executable file
|
@ -0,0 +1,20 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#|-*- mode:lisp -*-|#
|
||||||
|
#|
|
||||||
|
exec ros -Q -- $0 "$@"
|
||||||
|
|#
|
||||||
|
(progn
|
||||||
|
(ros:ensure-asdf)
|
||||||
|
#+quicklisp
|
||||||
|
(ql:quickload '(cl-mustache)
|
||||||
|
:silent t))
|
||||||
|
|
||||||
|
(defpackage :ros.script.templater
|
||||||
|
(:use :cl))
|
||||||
|
(in-package :ros.script.templater)
|
||||||
|
|
||||||
|
|
||||||
|
(defun main (&rest argv)
|
||||||
|
(declare (ignorable argv)))
|
||||||
|
|
||||||
|
;;; vim: set ft=lisp lisp:
|
2
.github/workflows/install.yml
vendored
2
.github/workflows/install.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
||||||
# - ultralisp
|
# - ultralisp
|
||||||
lisp:
|
lisp:
|
||||||
- sbcl-bin
|
- sbcl-bin
|
||||||
# - ccl-bin
|
- ccl-bin
|
||||||
# - ecl
|
# - ecl
|
||||||
# - abcl
|
# - abcl
|
||||||
# - allegro
|
# - allegro
|
||||||
|
|
Loading…
Reference in a new issue