Support custom shell #135
Workflow file for this run
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: Test | |
on: | |
workflow_dispatch: | |
release: | |
types: [ published ] | |
push: | |
branches: | |
- '*' | |
paths: | |
- '**.sh' | |
- '.github/workflows/test.yml' | |
- 'index.js' | |
- 'conf/*' | |
- 'hooks/*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
testsshfs: | |
if: ${{ !contains(github.repository, 'solaris') && !contains(github.repository, 'dragonflybsd') && !contains(github.repository, 'omnios')}} | |
strategy: | |
matrix: | |
release: [ "6.4.0", ""] | |
runs: [ "ubuntu-22.04", "ubuntu-24.04", "ubuntu-latest"] | |
runs-on: ${{ matrix.runs }} | |
name: sshfs DragonflyBSD | |
env: | |
MYTOKEN : ${{ secrets.MYTOKEN }} | |
MYTOKEN2: "value2" | |
SEC_VBOX : ${{ secrets.SEC_VBOX }} | |
DEBUG: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Creating Web console | |
uses: vmactions/cf-tunnel@v0 | |
id: tunnel | |
with: | |
protocol: http | |
port: 8000 | |
- name: Test in DragonflyBSD | |
id: test | |
uses: vmactions/dragonflybsd-vm@16c54e95d809193626c515c43966b094743e71c5 | |
with: | |
envs: 'DEBUG MYTOKEN MYTOKEN2' | |
prepare: | | |
pkg install -y socat | |
release: ${{ matrix.release }} | |
nat: | | |
"10022": "22" | |
"8080": "80" | |
"8443": "443" | |
udp:"8081": "80" | |
usesh: true | |
sync: sshfs | |
run: | | |
ls -lah /root/work | |
tree $HOME/work/ | |
if [ -z "$(ls -A $HOME/work)" ]; then | |
echo "sshfs error." | |
exit 1 | |
fi | |
echo "TEST_ENV=abc" >>${GITHUB_ENV} | |
if [ -n "test" ]; then | |
echo "false" | |
fi | |
if [ "test" ]; then | |
echo "test" | |
fi | |
pwd | |
ls -lah | |
whoami | |
env | |
uname -a | |
echo "OK" | |
- name: Test NAT | |
run: | |
echo "TEST_ENV=$TEST_ENV" | |
[ "$TEST_ENV" = "abc" ] | |
ssh -vvv -p 10022 -i $HOME/.ssh/host.id_rsa root@localhost "uname -a;whoami;pwd" | |
- name: Test custom shell | |
shell: dragonflybsd {0} | |
run: | | |
pwd | |
cd $GITHUB_WORKSPACE; | |
pwd | |
if [ -n "test" ]; then | |
echo "false" | |
fi | |
if [ "test" ]; then | |
echo "test" | |
fi | |
pwd | |
ls -lah | |
whoami | |
env | |
uname -a | |
echo "OK" | |
test: | |
strategy: | |
matrix: | |
release: [ "6.4.0", ""] | |
runs: [ "ubuntu-22.04", "ubuntu-24.04", "ubuntu-latest"] | |
runs-on: ${{ matrix.runs }} | |
name: DragonflyBSD | |
env: | |
MYTOKEN : ${{ secrets.MYTOKEN }} | |
MYTOKEN2: "value2" | |
SEC_VBOX : ${{ secrets.SEC_VBOX }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test in DragonflyBSD | |
id: test | |
uses: vmactions/dragonflybsd-vm@16c54e95d809193626c515c43966b094743e71c5 | |
with: | |
envs: 'MYTOKEN MYTOKEN2' | |
prepare: | | |
pkg install -y socat | |
mem: 4096 | |
release: ${{ matrix.release }} | |
nat: | | |
"10022": "22" | |
"8080": "80" | |
"8443": "443" | |
udp:"8081": "80" | |
usesh: true | |
run: | | |
echo "TEST_ENV=abc" >>${GITHUB_ENV} | |
if [ -n "test" ]; then | |
echo "false" | |
fi | |
if [ "test" ]; then | |
echo "test" | |
fi | |
pwd | |
ls -lah | |
whoami | |
env | |
uname -a | |
echo "OK" | |
- name: Test NAT | |
run: | |
echo "TEST_ENV=$TEST_ENV" | |
[ "$TEST_ENV" = "abc" ] | |
ssh -vvv -p 10022 -i $HOME/.ssh/host.id_rsa root@localhost "uname -a;whoami;pwd" | |
- name: Test custom shell | |
shell: dragonflybsd {0} | |
run: | | |
pwd | |
cd $GITHUB_WORKSPACE; | |
pwd | |
if [ -n "test" ]; then | |
echo "false" | |
fi | |
if [ "test" ]; then | |
echo "test" | |
fi | |
pwd | |
ls -lah | |
whoami | |
env | |
uname -a | |
echo "OK" | |