Skip to content

Commit 0d1f287

Browse files
committed
7
1 parent 16a5f98 commit 0d1f287

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/interop-mlkem.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
with:
8989
repository: wolfSSL/wolfssh
9090
path: wolfssh
91-
configure: --enable-debug --with-wolfssl=${{ env.build_dir }}
91+
configure: --with-wolfssl=${{ env.build_dir }}
9292
check: true
9393

9494
- name: Run connect test
@@ -97,5 +97,10 @@ jobs:
9797
mkdir -p /tmp/empty
9898
${{ env.build_dir }}/bin/ssh-keygen -f ~/.ssh/id_ed25519 -N "" -t ed25519
9999
cp ~/.ssh/id_ed25519.pub ~/.ssh/authorized_keys
100-
${{ env.build_dir }}/sbin/sshd -p 22222 -o KbdInteractiveAuthentication=no -o PasswordAuthentication=no -o PermitRootLogin=yes -o KexAlgorithms=mlkem768x25519-sha256
100+
${{ env.build_dir }}/sbin/sshd -p 22222 -o KbdInteractiveAuthentication=no -o PasswordAuthentication=no -o KexAlgorithms=mlkem768x25519-sha256
101101
./examples/client/client -u $(whoami) -i ~/.ssh/id_ed25519 -j ~/.ssh/id_ed25519.pub -c "ls /"
102+
kill -9 $(cat /var/run/sshd.pid)
103+
ps aux
104+
ECHO_PID=./examples/echoserver/echoserver -p 22222 -x mlkem768x25519-sha256 -I runner:~/.ssh/authorized_keys
105+
${{ env.build_dir }}/bin/ssh -p 22222 localhost ls /
106+
kill -9 $ECHO_PID

0 commit comments

Comments
 (0)