X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Ftestbed-setup%2Fansible%2Froles%2Fcommon%2Ftasks%2Fubuntu_bionic.yaml;h=2db85cf086433b9ac03bab400d17ac547036728a;hb=89d71f87e989047d7fda653017d8f9ce0879174b;hp=d80eb5edaca94f7e98ccb7460b35180a61a386a3;hpb=bf3ce71ec5074eb30a866ea8b6e01aad03d58e64;p=csit.git diff --git a/resources/tools/testbed-setup/ansible/roles/common/tasks/ubuntu_bionic.yaml b/resources/tools/testbed-setup/ansible/roles/common/tasks/ubuntu_bionic.yaml index d80eb5edac..2db85cf086 100644 --- a/resources/tools/testbed-setup/ansible/roles/common/tasks/ubuntu_bionic.yaml +++ b/resources/tools/testbed-setup/ansible/roles/common/tasks/ubuntu_bionic.yaml @@ -9,16 +9,45 @@ - name: Install CSIT dependencies apt: - name: '{{ item }}' + name: + - 'autoconf' + - 'build-essential' + - 'cgroup-bin' + - 'dkms' + - 'libpcap-dev' + - 'python-all' + - 'python-apt' + - 'python-cffi' + - 'python-cffi-backend' + - 'python-dev' + - 'python-pip' + - 'python-setuptools' + - 'python3-all' + - 'python3-apt' + - 'python3-cffi' + - 'python3-cffi-backend' + - 'python3-dev' + - 'python3-pip' + - 'python3-setuptools' + - 'qemu-system' + - 'socat' + - 'virtualenv' + - 'unzip' + - 'zlib1g-dev' state: 'present' cache_valid_time: 3600 install_recommends: False - with_items: - - 'python-apt' - - 'python-setuptools' - - 'git' - - 'crudini' - - 'expect' - - 'socat' - - 'qemu-system' + tags: install-csit-dependencies + +- name: Install CSIT dependencies - aarch64 SciPy + apt: + name: + - 'gfortran' + - 'libblas-dev' + - 'liblapack-dev' + state: 'present' + cache_valid_time: 3600 + install_recommends: False + when: > + ansible_machine == 'aarch64' tags: install-csit-dependencies