aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/calibration/tasks/main.yaml
blob: 462f72788cfea90fbcb816c83f1f895508c8b799 (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
26
---
# file: roles/calibration/tasks/main.yaml

- name: Calibration - Install Distribution - Release - Machine Prerequisites
  package:
    name: "{{ packages | flatten(levels=1) }}"
    state: latest
    update_cache: true
  tags:
    - install-dependencies

- name: Calibration - Run Spectre Meltdown Checker
  raw: "wget -qO - https://meltdown.ovh | sudo bash -s - --no-color || true"
  register: spectre_meltdown_output
  tags:
    - run-spectre-meltdown-checker

- debug: var=spectre_meltdown_output.stdout_lines
  tags:
    - run-spectre-meltdown-checker

- name: Calibration - {{ ansible_machine }} Specific
  include_tasks: "{{ ansible_machine }}.yaml"
  when: ansible_machine == "x86_64"
  tags:
    - run-jitter-tool