aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/calibration/tasks/x86_64.yaml
blob: 1d9ed5ea08bc5a500949c3f6454b6a69ab48399b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
# file: roles/calibration/tasks/x86_64.yaml

- name: Calibration - Clone PMA Tool
  git:
    repo: "https://gerrit.fd.io/r/pma_tools"
    dest: "{{ pma_directory }}"
  tags:
    - run-jitter-tool

- name: Calibration - Compile PMA Tool
  raw: "cd {{ pma_directory }}/jitter && make"
  tags:
    - run-jitter-tool

- name: Calibration - Run Jitter Tool
  raw: "{{ pma_directory }}/jitter/jitter -c {{ jitter_core }} -i {{ jitter_iterations }} -f"
  become: yes
  register: jitter_output
  tags:
    - run-jitter-tool

- debug: var=jitter_output.stdout_lines
  tags:
    - run-jitter-tool