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

- name: Clone Jitter tool
  git:
    repo: 'https://gerrit.fd.io/r/pma_tools'
    dest: '{{ jitter.directory }}'
  tags: run-jitter-tool

- name: Compile Jitter tool
  raw: 'cd {{ jitter.directory }}/jitter && make'
  tags: run-jitter-tool

- name: Run Jitter tool
  raw: '{{ jitter.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