playbooks: Add Go to the list of build dependencies

Otherwise, the tests on Fedora 31 and Rawhide fail with:
  meson.build:8:0: ERROR: Program(s) ['go'] not found or not executable

https://github.com/containers/toolbox/pull/506
This commit is contained in:
Harry Míchal 2020-07-21 15:58:30 +02:00 committed by Debarshi Ray
parent bf815d3d73
commit 9c5bc56bbd
2 changed files with 4 additions and 2 deletions

View file

@ -5,6 +5,7 @@
become: yes
package:
name:
- golang
- golang-github-cpuguy83-md2man
- ninja-build
- meson
@ -19,6 +20,6 @@
command: sudo systemd-tmpfiles --create
- name: Check versions of crucial packages
command: rpm -q podman crun conmon fuse-overlayfs flatpak-session-helper
command: rpm -q golang podman crun conmon fuse-overlayfs flatpak-session-helper
- include_tasks: ./pre-common.yaml

View file

@ -6,6 +6,7 @@
package:
use: dnf
name:
- golang
- golang-github-cpuguy83-md2man
- ninja-build
- meson
@ -20,6 +21,6 @@
command: sudo systemd-tmpfiles --create
- name: Check versions of crucial packages
command: rpm -q podman crun conmon fuse-overlayfs flatpak-session-helper
command: rpm -q golang podman crun conmon fuse-overlayfs flatpak-session-helper
- include_tasks: ./pre-common.yaml