-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce support for packit testing farm
- Adapt our integration tests to be executable by packit in the testing farm - Add support to execute integration tests after RPMs are built when PR is added/updated Fixes: #452 Signed-off-by: Martin Perina <mperina@redhat.com>
- Loading branch information
Showing
4 changed files
with
66 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
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,24 @@ | ||
FROM quay.io/bluechi/integration-test-base:latest | ||
|
||
ARG copr_repo | ||
|
||
RUN dnf install -y dnf-plugin-config-manager | ||
|
||
RUN dnf copr enable -y $copr_repo | ||
|
||
RUN dnf install \ | ||
--nogpgcheck \ | ||
--nodocs \ | ||
bluechi \ | ||
bluechi-debuginfo \ | ||
bluechi-agent \ | ||
bluechi-agent-debuginfo \ | ||
bluechi-ctl \ | ||
bluechi-ctl-debuginfo \ | ||
bluechi-selinux \ | ||
python3-bluechi \ | ||
-y | ||
|
||
RUN dnf -y clean all | ||
|
||
CMD [ "/sbin/init" ] |
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
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