svn commit: r1934673 - subversion/trunk/.github/workflows

[email protected] Wed, 27 May 2026 07:17:21 -0000
Newsgroups gmane.comp.version-control.subversion.svn
Message-ID <177986624189.3931198.14840171517557927221@svn03-he-fi>
Author: brane
Date: Wed May 27 07:17:21 2026
New Revision: 1934673

Log:
In the autotools workflow, limit the parallel build to 4 jobs. Apparently
]the macOS runner is not thrilled with 'make's default of unlimited jobs
with -j.

Also fix the macOS configure args ... again.

Modified:
   subversion/trunk/.github/workflows/autoconf.yml

Modified: subversion/trunk/.github/workflows/autoconf.yml
==============================================================================
--- subversion/trunk/.github/workflows/autoconf.yml	Wed May 27 07:09:03 2026	(r1934672)
+++ subversion/trunk/.github/workflows/autoconf.yml	Wed May 27 07:17:21 2026	(r1934673)
@@ -133,7 +133,6 @@ jobs:
               PYTHON="${{ steps.python.outputs.venv }}/bin/python3" \
           ./configure --enable-maintainer-mode \
               --disable-nls \
-              --disable-apxs \
               --enable-keychain \
               --enable-svnbrowse \
               --with-apr="$(brew --prefix apr)" \
@@ -142,12 +141,13 @@ jobs:
               --with-sqlite="$(brew --prefix sqlite)" \
               --with-lz4="$(brew --prefix lz4)" \
               --with-utf8proc="$(brew --prefix utf8proc)" \
+              --without-apxs \
               --without-berkeley-db \
               --without-swig \
               --without-libmagic
 
       - name: Build (make)
-        run: make -j
+        run: make -j4
 
       - name: Run tests
         run: make ${{matrix.check-target}} PARALLEL=16 APACHE_MPM=event