fix add make in install call
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
vincent 2023-03-26 15:31:40 +02:00
parent 4d7a396337
commit cc0230a934

View File

@ -1,8 +1,19 @@
- name: Upgrade arch-keyring
community.general.pacman:
state: latest # noqa package-latest
name: archlinux-keyring
force: true
update_cache: true
become: true
- name: Install base-devel package
community.general.pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
name: ["base-devel"] # not required. Name or list of names of the packages to install, upgrade, or remove.
update_cache: true
name:
- base-devel # not required. Name or list of names of the packages to install, upgrade, or remove.
- fakeroot
- make
become: true
- name: Create aur_builder user