Manual #8
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: "Manual" | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
RELEASE: "9.3" | |
DEBUG: 1 | |
VM_OS_NAME: netbsd | |
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }} | |
SEC_VBOX : ${{ secrets.SEC_VBOX }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: vmactions/cf-tunnel@v0 | |
id: tunnel | |
with: | |
protocol: http | |
port: 8000 | |
- name: Run establish a ngrok tunnel | |
id: test | |
uses: vmactions/[email protected] | |
with: | |
protocol: tcp | |
port: 5900 | |
- name: Sleep | |
run: | | |
for i in $(seq 1 10) ; do echo $i; sleep 1; done | |
echo "please loging to ssh below, and run:" | |
echo "=============================" | |
echo "bash build.sh conf/netbsd-$RELEASE.conf" | |
echo "=============================" | |
touch /tmp/keepalive | |
- uses: neilpang/debugger-action@master | |
# - run: | | |
# bash build.sh conf/netbsd-$RELEASE.conf | |