Fix cloning on subsequent runs

This commit is contained in:
Sam A. 2023-04-19 18:46:24 +02:00
parent ed9d9284ef
commit 34b99a8adf
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 9 additions and 6 deletions

View File

@ -28,15 +28,18 @@
dest: "{{ mp_spdz_dir }}"
version: v0.3.5
clone: true
update: true
update: false
recursive: true
single_branch: true
depth: 1
- name: Patch CONFIG
ansible.builtin.lineinfile:
path: "{{ mp_spdz_dir }}/CONFIG"
regexp: '^ARCH = -march=native$'
state: absent
- name: Create CONFIG.mine
ansible.builtin.copy:
dest: "{{ mp_spdz_dir }}/CONFIG.mine"
owner: "{{ username }}"
mode: u=rw,g=r,o=r
content: |
ARCH = -mtune=native -msse4.1 -msse4.2 -maes -mpclmul -mavx -mavx2 -mbmi2 -madx
- name: Build MP-SPDZ
community.general.make: