diff options
| author | Guohua Ouyang <gouyang@redhat.com> | 2018-04-19 21:43:06 +0800 |
|---|---|---|
| committer | Guohua Ouyang <gouyang@redhat.com> | 2018-04-19 21:43:06 +0800 |
| commit | 619163f3a6ef9c19a644bd314382b0ff6edbddbc (patch) | |
| tree | b620ef957f3ccf2de3c3e60a2165244707ccdf0f /tests/roles/cli/tasks/version.yaml | |
| parent | 4770dbb8bf1af8c6a58c2cc154838bc613d939e4 (diff) | |
| download | buildah-master.tar.gz buildah-master.tar.xz buildah-master.zip | |
* 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
Signed-off-by: Guohua Ouyang <gouyang@redhat.com>
Diffstat (limited to 'tests/roles/cli/tasks/version.yaml')
| -rw-r--r-- | tests/roles/cli/tasks/version.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/roles/cli/tasks/version.yaml b/tests/roles/cli/tasks/version.yaml new file mode 100644 index 0000000..05616a5 --- /dev/null +++ b/tests/roles/cli/tasks/version.yaml @@ -0,0 +1,14 @@ +--- +- 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 }} |
