df22010e4f
... at https://containertoolbx.org/install/ There are some minor benefits to always invoking meson(1), as opposed to directly invoking the underlying build backend, like 'ninja'. It's one less command to be aware of. Secondly, in theory, Meson can be used with backends other than Ninja (see 'meson configure'), even though Ninja is the most likely option for building Toolbx because it's only supported on Linux. https://github.com/containers/toolbox/pull/1142
11 lines
249 B
YAML
11 lines
249 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- include_tasks: dependencies.yaml
|
|
|
|
- name: Set up build directory
|
|
command: meson setup --fatal-meson-warnings builddir
|
|
args:
|
|
chdir: '{{ zuul.project.src_dir }}'
|
|
|
|
- include_tasks: build.yaml
|