4dd73ad160
The -Dmigration_path_for_coreos_toolbox option enables a different code path that's currently not tested by the CI at all. In fact, since it's a build-time option, the corresponding code path is not even built by the CI. To properly support the -Dmigration_path_for_coreos_toolbox option, it needs to be covered by the CI. This is a step in that direction by running the unit tests on it. https://github.com/containers/toolbox/pull/1095
11 lines
261 B
YAML
11 lines
261 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- include_tasks: dependencies.yaml
|
|
|
|
- name: Set up build directory
|
|
command: meson -Dmigration_path_for_coreos_toolbox=true builddir
|
|
args:
|
|
chdir: '{{ zuul.project.src_dir }}'
|
|
|
|
- include_tasks: build.yaml
|