* the tests is quite old since it moved from upstreamfirst * lots of new cases are added, like option 'run', 'inspect' etc * save log to TEST_ARTIFACTS when the variable is set * always run tests with latest runc built from source * merge task and task status to same line
15 lines
273 B
YAML
15 lines
273 B
YAML
---
|
|
- name: check version of buildah rpm package
|
|
command: rpm -q buildah
|
|
register: rpmver
|
|
args:
|
|
warn: no
|
|
|
|
- debug: msg={{ rpmver.stdout }}
|
|
|
|
- name: check version of command buildah version
|
|
command: buildah version
|
|
register: ver
|
|
|
|
- debug: msg={{ ver.stdout }}
|