Skip to content

Commit ab09c7f

Browse files
committed
Merge branch 'maint'
2 parents fd66ee9 + 822b2f7 commit ab09c7f

6 files changed

Lines changed: 396 additions & 184 deletions

File tree

.github/dockerfiles/Dockerfile.ubuntu-base

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ USER ${USER}
129129
## Need to set USER and create a keygen file for ssh tests to pass
130130
ENV USER=${USER}
131131
RUN ssh-keygen -q -t rsa -N '' -f $HOME/.ssh/id_rsa && \
132-
cp $HOME/.ssh/id_rsa.pub $HOME/.ssh/authorized_keys
132+
ssh-keygen -q -t ed25519 -N '' -f $HOME/.ssh/id_ed25519 && \
133+
ssh-keygen -q -t ecdsa -b 256 -N '' -f $HOME/.ssh/id_ecdsa && \
134+
cat $HOME/.ssh/id_rsa.pub $HOME/.ssh/id_ed25519.pub $HOME/.ssh/id_ecdsa.pub > $HOME/.ssh/authorized_keys
133135

134136
COPY --chown=${USER}:${GROUP} dockerfiles/.profile /home/otptest/.profile
135137

lib/ssh/test/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ MODULES= \
5757
ssh_key_cb \
5858
ssh_key_cb_options \
5959
ssh_key_cb_engine_keys \
60+
ssh_algorithms_key_cb \
6061
ssh_trpt_test_lib \
6162
ssh_chan_behaviours_client \
6263
ssh_chan_behaviours_server \
@@ -84,6 +85,8 @@ TARGET_FILES= $(MODULES:%=$(EBIN)/%.$(EMULATOR))
8485
SPEC_FILES = \
8586
ssh.spec \
8687
ssh_bench.spec \
88+
ssh_dev.spec \
89+
ssh_gh.spec \
8790
ssh_sup.spec
8891

8992
COVER_FILE = ssh.cover

0 commit comments

Comments
 (0)