3n-tsh timeout, testbed tags and ansible update
[csit.git] / resources / tools / testbed-setup / ansible / roles / tg_sut / tasks / aarch64.yaml
1 ---
2 # file: roles/tg_sut/tasks/aarch64.yaml
3
4 - name: Configure aarch64 kernel parameters
5   lineinfile:
6     path: '/etc/default/grub'
7     state: 'present'
8     regexp: '^GRUB_CMDLINE_LINUX='
9     line: 'GRUB_CMDLINE_LINUX="isolcpus={{ grub.isolcpus }} nohz_full={{ grub.nohz_full }} rcu_nocbs={{ grub.rcu_nocbs }} intel_iommu=on nmi_watchdog=0 audit=0 nosoftlockup processor.max_cstate=1"'
10   notify: ['Update GRUB']
11   tags: set-grub
12
13 - name: Install SciPy dependencies
14   apt:
15     name:
16       - 'gfortran'
17       - 'libblas-dev'
18       - 'liblapack-dev'
19     state: 'present'
20     install_recommends: False
21   tags: install-pip
22
23 - name: Install CSIT PIP requirements without SciPy
24   pip:
25     name:
26       - 'docopt==0.6.2'
27       - 'ecdsa==0.13'
28       - 'enum34==1.1.2'
29       - 'ipaddress==1.0.16'
30       - 'paramiko==1.16.0'
31       - 'pexpect==4.6.0'
32       - 'pycrypto==2.6.1'
33       - 'pykwalify==1.5.0'
34       - 'pypcap==1.1.5'
35       - 'python-dateutil==2.4.2'
36       - 'PyYAML==3.11'
37       - 'requests==2.9.1'
38       - 'robotframework==2.9.2'
39       - 'scapy==2.3.1'
40       - 'scp==0.10.2'
41       - 'six==1.12.0'
42       - 'dill==0.2.8.2'
43       - 'numpy==1.14.5'
44   tags: install-pip
45
46 - name: Install CSIT PIP requirements - SciPy workaround
47   pip:
48     name:
49       - 'scipy==1.1.0'
50   tags: install-pip