mirror of git://anongit.mindrot.org/openssh.git
Add test configs for MUSL C library.
This commit is contained in:
parent
f7fc6a43f1
commit
63bf4f49ed
|
@ -67,6 +67,12 @@ case "$config" in
|
|||
libedit)
|
||||
CONFIGFLAGS="--with-libedit"
|
||||
;;
|
||||
musl)
|
||||
CC="musl-gcc"
|
||||
CONFIGFLAGS="--without-zlib"
|
||||
LIBCRYPTOFLAGS="--without-openssl"
|
||||
TEST_TARGET="t-exec"
|
||||
;;
|
||||
pam-krb5)
|
||||
CONFIGFLAGS="--with-pam --with-kerberos5"
|
||||
SSHD_CONFOPTS="UsePam yes"
|
||||
|
|
|
@ -57,6 +57,9 @@ for TARGET in $TARGETS; do
|
|||
hardenedmalloc)
|
||||
INSTALL_HARDENED_MALLOC=yes
|
||||
;;
|
||||
musl)
|
||||
PACKAGES="$PACKAGES musl-tools"
|
||||
;;
|
||||
tcmalloc)
|
||||
PACKAGES="$PACKAGES libgoogle-perftools-dev"
|
||||
;;
|
||||
|
|
|
@ -38,6 +38,7 @@ jobs:
|
|||
- { os: ubuntu-20.04, configs: kitchensink }
|
||||
- { os: ubuntu-20.04, configs: hardenedmalloc }
|
||||
- { os: ubuntu-20.04, configs: tcmalloc }
|
||||
- { os: ubuntu-20.04, configs: musl }
|
||||
- { os: ubuntu-latest, configs: libressl-master }
|
||||
- { os: ubuntu-latest, configs: libressl-2.2.9 }
|
||||
- { os: ubuntu-latest, configs: libressl-2.8.3 }
|
||||
|
|
Loading…
Reference in New Issue