Reorganize symbols (attempt to fix tests) #243
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "SERVER-CI", | |
"on": { | |
"push": { | |
"branches": [ | |
"master" | |
] | |
}, | |
"pull_request": null, | |
"schedule": [ | |
{ | |
"cron": "0 10 * * 1" | |
} | |
] | |
}, | |
"jobs": { | |
"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 %}", | |
"cache": "false" | |
} | |
}, | |
{ | |
"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 }}" | |
} | |
} | |
] | |
} | |
} | |
} |