diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2018-07-05 16:22:58 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2018-07-05 16:22:58 +0200 |
commit | 0b3d99f96dabb1aa2fbf7f99559852916a97d610 (patch) | |
tree | b56e453cf5182a24c6878c23f5985781928d1e57 /roles/cuda/tests | |
parent | 5416f8599ffa92b69bb87434dc1175d760760bbe (diff) | |
parent | 813756495d5ef33fa3cc95d69b6d88418ebe7bb1 (diff) | |
download | itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.gz itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.bz2 itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.tar.xz itm-0b3d99f96dabb1aa2fbf7f99559852916a97d610.zip |
Merge commit '813756495d5ef33fa3cc95d69b6d88418ebe7bb1' as 'roles/cuda'
Diffstat (limited to 'roles/cuda/tests')
-rw-r--r-- | roles/cuda/tests/install.yml | 23 | ||||
-rw-r--r-- | roles/cuda/tests/inventory | 5 | ||||
-rw-r--r-- | roles/cuda/tests/test.yml | 12 |
3 files changed, 40 insertions, 0 deletions
diff --git a/roles/cuda/tests/install.yml b/roles/cuda/tests/install.yml new file mode 100644 index 0000000..03b9360 --- /dev/null +++ b/roles/cuda/tests/install.yml @@ -0,0 +1,23 @@ +--- +- hosts: localhost + connection: local + roles: + - { name: lae.travis-lxc } + vars: + host_quantity: 1 + +# Run the following within the containers in the inventory +- hosts: all + tasks: + # Solution for avahi-daemon issue from https://github.com/lxc/lxc/issues/25 + - block: + - name: Install avahi-daemon early on Ubuntu 16 containers + package: + name: avahi-daemon + ignore_errors: True + - name: Remove nproc from avahi-daemon.conf + lineinfile: + dest: /etc/avahi/avahi-daemon.conf + regexp: "^rlimit-nproc=" + state: absent + when: "ansible_distribution_release == 'xenial'" diff --git a/roles/cuda/tests/inventory b/roles/cuda/tests/inventory new file mode 100644 index 0000000..e45e40f --- /dev/null +++ b/roles/cuda/tests/inventory @@ -0,0 +1,5 @@ +[cuda] +test01.lxc + +[cuda:vars] +ansible_ssh_user=root diff --git a/roles/cuda/tests/test.yml b/roles/cuda/tests/test.yml new file mode 100644 index 0000000..5125bda --- /dev/null +++ b/roles/cuda/tests/test.yml @@ -0,0 +1,12 @@ +--- +- hosts: all + become: True + roles: + - ansible-role-cuda + vars: + - gpu: True + - cuda_restart_node_on_install: False + - cuda_init: True + - cuda_init_restart_service: False + +# vim:ft=ansible: |