CSIT Azure integration
[csit.git] / resources / tools / testbed-setup / ansible / roles / calibration / tasks / main.yaml
1 ---
2 # file: roles/calibration/tasks/main.yaml
3
4 - name: Calibration - Install Distribution - Release - Machine Prerequisites
5   package:
6     name: "{{ packages | flatten(levels=1) }}"
7     state: latest
8     update_cache: true
9   tags:
10     - install-dependencies
11
12 - name: Calibration - Run Spectre Meltdown Checker
13   raw: "wget -qO - https://meltdown.ovh | sudo bash -s - --no-color || true"
14   register: spectre_meltdown_output
15   tags:
16     - run-spectre-meltdown-checker
17
18 - debug: var=spectre_meltdown_output.stdout_lines
19   tags:
20     - run-spectre-meltdown-checker
21
22 - name: Calibration - {{ ansible_machine }} Specific
23   include_tasks: "{{ ansible_machine }}.yaml"
24   when: ansible_machine == "x86_64"
25   tags:
26     - run-jitter-tool