summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2020-08-07 06:15:11 +0200
committerDarren Tucker <dtucker@dtucker.net>2020-08-07 06:26:20 +0200
commit651bb3a31949bbdc3a78b2ede95a77bce0c72984 (patch)
treeade2d3a1b62c74ad400fb970033bea10d474105b
parentAdd CI with prepare script (diff)
downloadopenssh-651bb3a31949bbdc3a78b2ede95a77bce0c72984.tar.xz
openssh-651bb3a31949bbdc3a78b2ede95a77bce0c72984.zip
Add without-openssl without-zlib test target.
Diffstat (limited to '')
-rwxr-xr-x.github/setup_ci.sh2
-rw-r--r--.github/workflows/c-cpp.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh
index 237721ade..e2474ccd7 100755
--- a/.github/setup_ci.sh
+++ b/.github/setup_ci.sh
@@ -13,7 +13,7 @@ lsb_release -a
for TARGET in $TARGETS; do
case $TARGET in
- "")
+ ""|--without-openssl|--without-zlib)
# nothing to do
;;
"--with-kerberos5")
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index f18f05a8a..6ea16196b 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -21,6 +21,7 @@ jobs:
- "--with-security-key-builtin"
- "--with-selinux"
- "--with-kerberos5 --with-libedit --with-pam --with-security-key-builtin --with-selinux"
+ - "--without-openssl --without-zlib"
steps:
- uses: actions/checkout@v2