mirror of
https://github.com/containers/skopeo.git
synced 2025-04-27 02:51:02 +00:00
This commit enables TMT jobs triggered by Packit to run system tests. 2 set of jobs `dev` and `release` have been added. `dev` jobs are meant to run on main PRs with additional package updates fetched from podman-next copr while `release` jobs are meant to run on release- branch PRs using only the dependencies present in the official distro. Packit checks PR labels (see previous commit) to filter out the jobs that get run. Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
14 lines
162 B
Bash
14 lines
162 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -exo pipefail
|
|
|
|
uname -r
|
|
|
|
rpm -q \
|
|
bats \
|
|
containers-common \
|
|
skopeo \
|
|
skopeo-tests \
|
|
|
|
bats /usr/share/skopeo/test/system
|