From 84a8c3cd01d15c59987585f3e3d4925c8af1e3f2 Mon Sep 17 00:00:00 2001 From: Smit1603 Date: Sat, 30 Sep 2023 18:11:27 +0530 Subject: [PATCH] Updating CI with macos build --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6eaec0de..1b873f235 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -220,7 +220,7 @@ jobs: -DCLANG_ENABLE_BOOTSTRAP=OFF \ ../llvm if [[ "${os}" == "macos*" ]]; then - cmake --build . --target clang clang-repl --parallel $(sysctl -n hw.physicalcpu) + cmake --build . --target clang clang-repl --parallel $(sysctl -n hw.ncpu) else cmake --build . --target clang clang-repl --parallel $(nproc --all) fi @@ -286,7 +286,7 @@ jobs: fi os="${{ matrix.os }}" if [[ "${os}" == "macos*" ]]; then - cmake --build . --target check-cppinterop --parallel $(sysctl -n hw.physicalcpu) + cmake --build . --target check-cppinterop --parallel $(sysctl -n hw.ncpu) else cmake --build . --target check-cppinterop --parallel $(nproc --all) fi