On Mon, Dec 2, 2024 at 12:40 PM GitBox <g...@apache.org> wrote:
>
>
> The GitHub Actions job "CMake" on subversion.git has failed.
> Run started by GitHub user asfgit (triggered by asfgit).
>
> Head commit for run:
> ae29c4b73af9d80276ab90a0c9d675e241335b90 / Timofei Zhakov <rin...@apache.org>
> Minor code format in merge.c.
>
> * subversion/libsvn_client/merge.c
>   (record_tree_conflict): Fix indentation of the variables' declarations.
>
> git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1922262 
> 13f79535-47bb-0310-9956-ffa450edef68
>
> Report URL: https://github.com/apache/subversion/actions/runs/12124369156
>
> With regards,
> GitHub Actions via GitBox


The error is:
Run ctest --output-on-failure --verbose -C Release --jobs 16
CMake Error: Unknown argument: --jobs

Should be --parallel or -j instead? Patch attached...

Nathan
Index: .github/workflows/cmake.yml
===================================================================
--- .github/workflows/cmake.yml (revision 1922262)
+++ .github/workflows/cmake.yml (working copy)
@@ -167,7 +167,7 @@
         id: run_all_tests
         if: matrix.run_tests
         working-directory: out
-        run: ctest --output-on-failure --verbose -C Release --jobs 16
+        run: ctest --output-on-failure --verbose -C Release --parallel 16
 
       - name: Rerun failed tests
         if: ${{ matrix.run_tests && failure() && 
steps.run_all_tests.conclusion == 'failure' }}

Reply via email to