-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tomas Tomecek <[email protected]>
- Loading branch information
1 parent
aa4167d
commit 1ac6b85
Showing
2 changed files
with
38 additions
and
0 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,19 @@ | ||
summary: | ||
Check rpm files with rpminspect | ||
discover: | ||
how: shell | ||
tests: | ||
- name: rpminspect SRPM | ||
test: rpminspect-centos -v -t VERIFY --profile=centos-stream-9-devel /tmp/*.src.rpm | ||
- name: rpminspect binary RPMs | ||
test: for rpm in /var/share/test-artifacts/*.rpm; do rpminspect-centos -v -t VERIFY --profile=centos-stream-9-devel $rpm; done | ||
prepare: | ||
- name: packages | ||
how: install | ||
package: | ||
- rpminspect | ||
- rpminspect-data-centos | ||
- how: shell | ||
script: cd /tmp && curl -O ${PACKIT_SRPM_URL} | ||
execute: | ||
how: tmt |
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,19 @@ | ||
summary: | ||
Check rpm files with rpminspect | ||
discover: | ||
how: shell | ||
tests: | ||
- name: rpminspect | ||
test: rpminspect-fedora /tmp/*.src.rpm | ||
- name: rpminspect binary RPMs | ||
test: for rpm in /var/share/test-artifacts/*.rpm; do rpminspect-fedora $rpm; done | ||
prepare: | ||
- name: packages | ||
how: install | ||
package: | ||
- rpminspect | ||
- rpminspect-data-fedora | ||
- how: shell | ||
script: cd /tmp && curl -O ${PACKIT_SRPM_URL} | ||
execute: | ||
how: tmt |