diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-01-29 18:40:47 +0100 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-01-29 18:57:05 +0100 |
| commit | d52e1c36fa8966b999cbdd39139fcb71447d66f9 (patch) | |
| tree | 965f9cbb8620fe622d89ebfd57caf8a0b7e7c619 | |
| parent | b87ef87134d56a820e2f836fde4c0ad92696d82a (diff) | |
Ignore tasks from testing as they can't work on containers
| -rw-r--r-- | roles/nvidia_gtx1060/tasks/install-archlinux.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/nvidia_gtx1060/tasks/install-archlinux.yml b/roles/nvidia_gtx1060/tasks/install-archlinux.yml index 6d18eea4..0a8565ea 100644 --- a/roles/nvidia_gtx1060/tasks/install-archlinux.yml +++ b/roles/nvidia_gtx1060/tasks/install-archlinux.yml @@ -20,6 +20,10 @@ dest: "/etc/modprobe.d/nvidia.conf" mode: "0644" notify: "Rebuild initramfs" + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" - name: "Get current mkinitcpio MODULES" become: true @@ -29,6 +33,10 @@ # noqa var-naming[no-role-prefix] as it describes the current kernel modules and not the nvidia modules register: "current_kernel_modules" changed_when: false + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" - name: "Add NVIDIA modules to mkinitcpio" become: true @@ -40,3 +48,7 @@ regexp: "^MODULES=\\(.*\\)" line: "MODULES=({{ all_modules | join(' ') }})" notify: "Rebuild initramfs" + tags: + # Since the /etc/mkinitcpio isn't available on the docker container + # Ignore this for testing, + - "molecule-notest" |
