You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pe...@apache.org on 2023/12/25 07:03:09 UTC

(celix) branch hotfix/macOS-ninja-build updated: Remove -j from ninja invocation.

This is an automated email from the ASF dual-hosted git repository.

pengzheng pushed a commit to branch hotfix/macOS-ninja-build
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/hotfix/macOS-ninja-build by this push:
     new ddce574f Remove -j from ninja invocation.
ddce574f is described below

commit ddce574f7c4f061fdd8bd353991e04f3c87ee3b3
Author: PengZheng <ho...@gmail.com>
AuthorDate: Mon Dec 25 15:03:01 2023 +0800

    Remove -j from ninja invocation.
---
 .github/workflows/macos.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 48fa0be0..a4b8ed28 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -100,7 +100,7 @@ jobs:
           mkdir build install
           cd build
           cmake ${BUILD_OPTIONS} -DCMAKE_INSTALL_PREFIX=../install ..
-          ninja -j && ninja install
+          ninja && ninja install
       - name: Test
         run: |
           cd $GITHUB_WORKSPACE/build