set a default of 4 for make jobs in neovim

This commit is contained in:
Matthew Stobbs
2025-10-16 20:29:34 -06:00
parent 9da33b5391
commit 40e80abf92

View File

@@ -38,4 +38,4 @@
CMAKE_BUILD_TYPE: "{{ neovim.build_type }}"
CMAKE_EXTRA_FLAGS: "-DCMAKE_INSTALL_PREFIX={{ path.prefix }}"
target: install
jobs: "{{ ansible_processor_nproc | int }}"
jobs: "{{ ansible_processor_nproc | int | default(4) }}"