-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: Move skopeo test to rpm-ostree/container-deps
And verify that `ostree container encapsulate` exists. This would have caught https://issues.redhat.com/browse/OCPBUGS-553
- Loading branch information
Showing
3 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
# Verify some dependencies of the rpm-ostree container stack. | ||
# kola: { "exclusive": false } | ||
|
||
set -xeuo pipefail | ||
|
||
. $KOLA_EXT_DATA/commonlib.sh | ||
|
||
# Verify this command exists since it's a hard dependency of ostree's container bits. | ||
skopeo experimental-image-proxy --help | ||
|
||
# Also this one verifies the linkage between ostree and rpm-ostree via extensions | ||
h=$(ostree container encapsulate --help) | ||
[[ "$h" =~ --copymeta ]] || fatal "missing ostree container" | ||
|
||
ok skopeo |
File renamed without changes.
This file was deleted.
Oops, something went wrong.