Skip to content

Commit 53d945f

Browse files
committed
9
1 parent 203279e commit 53d945f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/interop-mlkem.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ jobs:
9898
${{ env.build_dir }}/bin/ssh-keygen -f ~/.ssh/id_ed25519 -N "" -t ed25519
9999
cp ~/.ssh/id_ed25519.pub ~/.ssh/authorized_keys
100100
${{ env.build_dir }}/sbin/sshd -p 22222 -o KbdInteractiveAuthentication=no -o PasswordAuthentication=no -o KexAlgorithms=mlkem768x25519-sha256
101-
SSH_PID=$?
101+
SSH_PID=$!
102102
./examples/client/client -u $(whoami) -i ~/.ssh/id_ed25519 -j ~/.ssh/id_ed25519.pub -c "ls /"
103103
kill -9 $SSH_PID
104104
ps aux
105-
./examples/echoserver/echoserver -p 22222 -x mlkem768x25519-sha256 -I runner:~/.ssh/authorized_keys
106-
ECHO_PID=$?
105+
./examples/echoserver/echoserver -p 22222 -x mlkem768x25519-sha256 -I runner:~/.ssh/authorized_keys &
106+
ECHO_PID=$!
107107
${{ env.build_dir }}/bin/ssh -p 22222 localhost ls /
108108
kill -9 $ECHO_PID

0 commit comments

Comments
 (0)