Skip to content

Reorganize symbols (attempt to fix tests) #239

Reorganize symbols (attempt to fix tests)

Reorganize symbols (attempt to fix tests) #239

Workflow file for this run

{
"name": "SERVER-CI",
"on": {
"push": {
"branches": [
"master"
]
},
"pull_request": null,
"schedule": [
{
"cron": "0 10 * * 1"
}
]
},
"jobs": {
"linter": {
"runs-on": "ubuntu-latest",
"env": {
"OS": "ubuntu-latest",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
},
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "openrpc-server",
"cache": "true"
}
},
{
"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 --no-deps",
"shell": "bash"
},
{
"name": "Install SBLint wrapper",
"run": "qlot exec ros install 40ants-asdf-system 40ants-linter",
"shell": "bash"
},
{
"name": "Run Linter",
"run": "qlot exec 40ants-linter --system \"openrpc-server\" --imports",
"shell": "bash"
}
]
},
"run-tests": {
"runs-on": "ubuntu-latest",
"env": {
"OS": "ubuntu-latest",
"QUICKLISP_DIST": "ultralisp",
"LISP": "sbcl-bin",
"ACTIONS_STEP_DEBUG": "true"
},
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@debug-log-for-quicklisp-fix",
"with": {
"qlfile-template": "{% ifequal quicklisp_dist \"ultralisp\" %}\ndist ultralisp http://dist.ultralisp.org\n{% endifequal %}"
}
},
{
"name": "Check path ~/.quicklisp-client-fix",
"shell": "lispsh -eo pipefail {0}",
"run": "ls -l ~/.quicklisp-client-fix"
},
{
"name": "Check roswell init file",
"shell": "lispsh -eo pipefail {0}",
"run": "cat ~/.roswell/init.lisp"
},
{
"name": "Check env",
"shell": "lispsh -eo pipefail {0}",
"run": "env | sort"
},
{
"name": "Check path",
"shell": "lispsh -eo pipefail {0}",
"run": "qlot exec ros run --eval '(format t \"jsonrpc: ~A~%openrpc-server: ~A~%openrpc-client: ~A~%list-dir: ~A~%DONE~%\" (ql:where-is-system :jsonrpc) (ql:where-is-system :openrpc-server) (ql:where-is-system :openrpc-client) (directory (uiop:wilden (ql:where-is-system :openrpc-server))))' --eval '(uiop:quit 0)'"
},
{
"name": "Run Tests",
"uses": "40ants/run-tests@v2",
"with": {
"asdf-system": "openrpc-server",
"coveralls-token": "${{ secrets.github_token }}"
}
}
]
}
}
}