summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2024-09-24 10:41:44 +0200
committerDarren Tucker <dtucker@dtucker.net>2024-09-24 10:41:44 +0200
commitd3aee17f6d395202eaa42a0c449b6da41f61527c (patch)
tree04c86ffc12e888f5ae7eeaf6b94d98ffd193fea8
parentfix utmpx ifdef (diff)
downloadopenssh-d3aee17f6d395202eaa42a0c449b6da41f61527c.tar.xz
openssh-d3aee17f6d395202eaa42a0c449b6da41f61527c.zip
Test the flags from OpenWRT's package.
-rwxr-xr-x.github/configs8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/configs b/.github/configs
index 4f47f820b..136357d95 100755
--- a/.github/configs
+++ b/.github/configs
@@ -301,6 +301,14 @@ case "${TARGET_HOST}" in
LIBCRYPTOFLAGS="--without-openssl"
TEST_TARGET="t-exec"
;;
+ openwrt-mips)
+ # Test most of the flags that OpenWRT sets for their package build.
+ # We only do this on one OpenWRT target for better coverage.
+ OPENWRT_FLAGS="--disable-strip --disable-lastlog
+ --disable-utmp --disable-utmpx --disable-wtmp --disable-wtmpx
+ --with-stackprotect --with-cflags-after=-fzero-call-used-regs=skip"
+ CONFIGFLAGS="${CONFIGFLAGS} $(echo ${OPENWRT_FLAGS})"
+ ;;
sol10|sol11)
# sol10 VM is 32bit and the unit tests are slow.
# sol11 has 4 test configs so skip unit tests to speed up.