Add ARM Taishan testbed33 perftest
[csit.git] / resources / tools / testbed-setup / ansible / roles / calibration / tasks / main.yaml
1 ---
2 # file: roles/calibration/tasks/main.yaml
3
4 - name: Ubuntu specific
5   import_tasks: ubuntu.yaml
6   when: ansible_distribution|lower == 'ubuntu'
7
8 - name: Run Spectre Meltdown checker
9   raw: 'spectre-meltdown-checker --no-color'
10   register: spectre_meltdown_output
11   tags: run-spectre-meltdown-checker
12
13 - debug: var=spectre_meltdown_output.stdout_lines
14   tags: run-spectre-meltdown-checker
15
16 - name: x86 specific
17   import_tasks: x86_64.yaml
18   when: ansible_machine == 'x86_64'