Do not needlessly update pacman cache in build role.

This was causing an always-yellow step.
This commit is contained in:
Tom Alexander 2023-03-04 08:46:48 -05:00
parent cce1a0ca46
commit c208c0748d
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 3 additions and 4 deletions

View File

@ -5,16 +5,15 @@
become_user: "{{ build_user.name }}"
- name: Install packages
pacman:
package:
name:
- base-devel
- gnupg
- devtools # Creates /usr/share/devtools/makepkg-x86_64.conf and provides mkarchroot
- base-devel
- vifm
- vim
- vifm # For aurutils
- vim # For aurutils
state: present
update_cache: true
- name: Extract aurutils aur entry
become_user: "{{ build_user.name }}"