summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2023-03-28 06:31:16 +0000
committerrpluem <rpluem@13f79535-47bb-0310-9956-ffa450edef68>2023-03-28 06:31:16 +0000
commitbd8d2b530dce2d6f1496821fa0d3a3c0ac7636b3 (patch)
tree5496bc69ea85c217b0b583a2a3ab0a764ea3a67b
parent2607d272f4f94e06e3b5921f5680625e74f11c25 (diff)
downloadlibapr-bd8d2b530dce2d6f1496821fa0d3a3c0ac7636b3.tar.gz
Merge r1908434, r1908435, r1908436, r1908437 from trunk:
Test --with-crypto in ci. Follow up to r1908434: --with-openssl too. ci: DSOs should be installed for apu_dso_load(). ci: install to some writable directory. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.8.x@1908758 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--.github/workflows/linux.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d0d8c4a9f..fe56a8eaf 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -30,6 +30,8 @@ jobs:
- name: Maintainer-mode, -Werror
notest-cflags: -Werror
config: --enable-maintainer-mode
+ - name: With crypto
+ config: --with-crypto=yes --with-openssl=yes
- name: ASan
# w/o ODBC since DSO unload leaks memory and fails the tests
notest-cflags: -fsanitize=address -fno-sanitize-recover=address -fno-omit-frame-pointer -Werror -O2
@@ -53,8 +55,10 @@ jobs:
- name: buildconf
run: ./buildconf
- name: configure
- run: ./configure ${{ matrix.config }}
+ run: ./configure --prefix=/tmp/apr ${{ matrix.config }}
- name: make
run: make $MARGS
- - name: make check
+ - name: install
+ run: make install
+ - name: check
run: make check