summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2020-08-07 14:15:11 +1000
committerDarren Tucker <dtucker@dtucker.net>2020-08-07 14:26:20 +1000
commit651bb3a31949bbdc3a78b2ede95a77bce0c72984 (patch)
treeade2d3a1b62c74ad400fb970033bea10d474105b
parent9499f2bb01dc1032ae155999b2d7764b9491341f (diff)
Add without-openssl without-zlib test target.
-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
13 13
14for TARGET in $TARGETS; do 14for TARGET in $TARGETS; do
15 case $TARGET in 15 case $TARGET in
16 "") 16 ""|--without-openssl|--without-zlib)
17 # nothing to do 17 # nothing to do
18 ;; 18 ;;
19 "--with-kerberos5") 19 "--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:
21 - "--with-security-key-builtin" 21 - "--with-security-key-builtin"
22 - "--with-selinux" 22 - "--with-selinux"
23 - "--with-kerberos5 --with-libedit --with-pam --with-security-key-builtin --with-selinux" 23 - "--with-kerberos5 --with-libedit --with-pam --with-security-key-builtin --with-selinux"
24 - "--without-openssl --without-zlib"
24 25
25 steps: 26 steps:
26 - uses: actions/checkout@v2 27 - uses: actions/checkout@v2