summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2023-03-28 06:34:15 +0000
committerRuediger Pluem <rpluem@apache.org>2023-03-28 06:34:15 +0000
commit29133303ff50878f4e9aaf26797a4496e6289c4e (patch)
tree449836ce70fa96c0243b59862340d0d63ba23e6f
parent0f58659a665c3adb4f93d940dac805be7cc37013 (diff)
downloadapr-29133303ff50878f4e9aaf26797a4496e6289c4e.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.7.x@1908759 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 e624171eb..47742afe6 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