You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2023/03/28 06:31:16 UTC

svn commit: r1908758 - in /apr/apr/branches/1.8.x: ./ .github/workflows/linux.yml

Author: rpluem
Date: Tue Mar 28 06:31:16 2023
New Revision: 1908758

URL: http://svn.apache.org/viewvc?rev=1908758&view=rev
Log:
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.

Modified:
    apr/apr/branches/1.8.x/   (props changed)
    apr/apr/branches/1.8.x/.github/workflows/linux.yml

Propchange: apr/apr/branches/1.8.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1908434-1908437

Modified: apr/apr/branches/1.8.x/.github/workflows/linux.yml
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.8.x/.github/workflows/linux.yml?rev=1908758&r1=1908757&r2=1908758&view=diff
==============================================================================
--- apr/apr/branches/1.8.x/.github/workflows/linux.yml (original)
+++ apr/apr/branches/1.8.x/.github/workflows/linux.yml Tue Mar 28 06:31:16 2023
@@ -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