Skip to content

Commit

Permalink
Decrease the threads for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yixinglu committed Oct 13, 2021
1 parent 4a94c4b commit 5a0aa5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
cmake --build build/ -j $(nproc) --target nebula-metad
cmake --build build/ -j $(nproc) --target nebula-storaged
cmake --build build/ -j $(nproc) --target nebula-graphd
cmake --build build/ -j $(($(nproc)/2+1))
cmake --build build/ -j $(($(nproc)/3+1))
ccache -s
- name: CTest
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
cmake --build build/ -j $(nproc) --target nebula-metad
cmake --build build/ -j $(nproc) --target nebula-storaged
cmake --build build/ -j $(nproc) --target nebula-graphd
cmake --build build/ -j $(($(nproc)/2+1))
cmake --build build/ -j $(($(nproc)/3+1))
ccache -s
- name: CTest
env:
Expand Down

0 comments on commit 5a0aa5c

Please sign in to comment.