summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d9d1896..904afa4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -55,6 +55,10 @@ jobs:
sudo echo "127.0.0.1 gateway.netssh" | sudo tee -a /etc/hosts
- name: Check sshd_config
run: sudo cat '/etc/ssh/sshd_config' || true
+ - name: Check sshd_config2
+ run: sudo cat /etc/ssh/sshd_config.d/*.conf || true
+ - name: Check sshd pid
+ run: sudo ps aux | grep sshd
- name: Ansible install
run: |
python -m pip install --upgrade pip
@@ -67,6 +71,10 @@ jobs:
ansible-playbook ./test/integration/playbook.yml -i "localhost," --become -c local -e 'no_rvm=true' -e 'myuser=runner' -e 'mygroup=runner' -e 'homedir=/home/runner'
- name: Check sshd_config
run: sudo cat '/etc/ssh/sshd_config' || true
+ - name: Check sshd pid
+ run: sudo ps aux | grep sshd
+ - name: Check sshd_config2
+ run: sudo cat /etc/ssh/sshd_config.d/*.conf || true
- name: Run Tests
run: bundle exec ruby test/integration/test_forward.rb -n test_server_eof_should_be_handled_remote
env: