Add ARM Taishan testbed33 perftest
[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: Clone Jitter tool
5   git:
6     repo: 'https://gerrit.fd.io/r/pma_tools'
7     dest: '{{ jitter.directory }}'
8   tags: run-jitter-tool
9
10 - name: Compile Jitter tool
11   raw: 'cd {{ jitter.directory }}/jitter && make'
12   tags: run-jitter-tool
13
14 - name: Run Jitter tool
15   raw: '{{ jitter.directory }}/jitter/jitter -c {{ jitter.core }} -i {{ jitter.iterations }} -f'
16   become: yes
17   register: jitter_output
18   tags: run-jitter-tool
19
20 - debug: var=jitter_output.stdout_lines
21   tags: run-jitter-tool