perf(nvim): improve neovim build from master speed

This commit is contained in:
Price Hiller 2023-08-21 22:43:24 -05:00
parent 1dd0dbd855
commit c4e7c8704a
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -53,14 +53,16 @@
ansible.builtin.git:
repo: "{{ nvim_git_url }}"
dest: "{{ nvim_work_dir.path }}"
depth: 1
force: true
update: true
- name: Build Neovim
community.general.make:
chdir: "{{ nvim_work_dir.path }}"
jobs: "{{ ansible_processor_cores // 2 }}"
params:
NUM_THREADS: 8
NUM_THREADS: "{{ ansible_processor_cores // 2 }}"
CMAKE_BUILD_TYPE: Release
- name: Install Neovim