From 086b0449501bc4eb51cd617f28dd50e04326878a Mon Sep 17 00:00:00 2001 From: pmikus Date: Tue, 13 Sep 2022 07:38:03 +0000 Subject: fix(ansible): Compatibility improvements Signed-off-by: Peter Mikus Change-Id: I7f17cabb26c7684f0e6520e9f8ba755434a0e319 --- fdio.infra.ansible/roles/trex/tasks/deploy_block.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'fdio.infra.ansible/roles/trex') diff --git a/fdio.infra.ansible/roles/trex/tasks/deploy_block.yaml b/fdio.infra.ansible/roles/trex/tasks/deploy_block.yaml index d2fa2a3072..b436879a54 100644 --- a/fdio.infra.ansible/roles/trex/tasks/deploy_block.yaml +++ b/fdio.infra.ansible/roles/trex/tasks/deploy_block.yaml @@ -56,6 +56,18 @@ ansible.builtin.command: "./b build" args: chdir: "{{ trex_target_dir }}/trex-core-{{ item }}/linux_dpdk/" + async: 3000 + poll: 0 + register: trex_built + when: trex_extracted.changed + +- name: Check if T-Rex is compiled + async_status: + jid: "{{ trex_built.ansible_job_id }}" + register: trex_built + until: trex_built.finished + delay: 10 + retries: 300 when: trex_extracted.changed - name: Switch to gcc-11 -- cgit