CSIT Azure integration
[csit.git] / resources / tools / testbed-setup / ansible / roles / calibration / tasks / x86_64.yaml
1 ---
2 # file: roles/calibration/tasks/x86_64.yaml
3
4 - name: Calibration - Clone PMA Tool
5   git:
6     repo: "https://gerrit.fd.io/r/pma_tools"
7     dest: "{{ pma_directory }}"
8   tags:
9     - run-jitter-tool
10
11 - name: Calibration - Compile PMA Tool
12   raw: "cd {{ pma_directory }}/jitter && make"
13   tags:
14     - run-jitter-tool
15
16 - name: Calibration - Run Jitter Tool
17   raw: "{{ pma_directory }}/jitter/jitter -c {{ jitter_core }} -i {{ jitter_iterations }} -f"
18   become: yes
19   register: jitter_output
20   tags:
21     - run-jitter-tool
22
23 - debug: var=jitter_output.stdout_lines
24   tags:
25     - run-jitter-tool