Install ngrok
This commit is contained in:
parent
c27a4c3d98
commit
2e1a82b095
1 changed files with 46 additions and 4 deletions
50
.github/actions/setup/action.yml
vendored
50
.github/actions/setup/action.yml
vendored
|
@ -1,11 +1,29 @@
|
||||||
name: 'Install Roswell & Qlot'
|
name: 'Install Roswell & Qlot'
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
qlfile-template:
|
||||||
|
description: 'Jinja template for qlfile'
|
||||||
|
required: false
|
||||||
|
default: |
|
||||||
|
|
||||||
|
lisp-system:
|
||||||
|
description: 'ASDF system to install and test'
|
||||||
|
required: false
|
||||||
|
run-tests:
|
||||||
|
description: A command to run tests
|
||||||
|
required: false
|
||||||
|
default: |
|
||||||
|
qlot exec ros --eval '(asdf:test-system :${{ inputs.lisp-system }})' --quit
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Current Env
|
- name: Current Env
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
echo ::group::Environment
|
||||||
env | sort -u
|
env | sort -u
|
||||||
|
echo ::endgroup::
|
||||||
- name: Install Roswell
|
- name: Install Roswell
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -28,12 +46,36 @@ runs:
|
||||||
run: |
|
run: |
|
||||||
ros install qlot
|
ros install qlot
|
||||||
echo .qlot/bin >> $GITHUB_PATH
|
echo .qlot/bin >> $GITHUB_PATH
|
||||||
|
|
||||||
|
- name: Start SSH session
|
||||||
|
uses: luchihoratiu/debug-via-ssh@main
|
||||||
|
with:
|
||||||
|
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
|
||||||
|
NGROK_REGION: eu
|
||||||
|
SSH_PASS: ${{ secrets.SSH_PASS }}
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
rm -fr qlfile
|
if [[ -e qlfile ]]; then
|
||||||
touch qlfile
|
rm -fr qlfile.lock
|
||||||
if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then
|
else:
|
||||||
|
if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then
|
||||||
echo dist ultralisp http://dist.ultralisp.org/ >> qlfile
|
echo dist ultralisp http://dist.ultralisp.org/ >> qlfile
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
qlot install
|
qlot install
|
||||||
|
- name: Install System
|
||||||
|
run: |
|
||||||
|
if [[ "${QUICKLISP_DIST}" == 'quicklisp' ]]; then
|
||||||
|
qlot exec ros install 40ants/defmain
|
||||||
|
fi
|
||||||
|
|
||||||
|
qlot exec ros install cl-info
|
||||||
|
- name: Install System
|
||||||
|
run: |
|
||||||
|
if [[ "${QUICKLISP_DIST}" == 'quicklisp' ]]; then
|
||||||
|
qlot exec ros install 40ants/defmain
|
||||||
|
fi
|
||||||
|
|
||||||
|
qlot exec ros install cl-info
|
||||||
|
|
Loading…
Reference in a new issue