| |
@@ -152,7 +152,18 @@
|
| |
@echo "Tagged with: $(TAG)"
|
| |
@echo
|
| |
|
| |
- # If and only if "make build" fails, use "make force-tag" to
|
| |
+ containers:
|
| |
+ make -C devtools/containers all
|
| |
+
|
| |
+ container-test: containers
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-fedora:41 bash -c "cd /mnt ; tox -re py3"
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-fedora:42 bash -c "cd /mnt ; tox -re py3"
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-fedora:rawhide bash -c "cd /mnt ; tox -re py3"
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-centos:7 bash -c "cd /mnt ; tox -re py2"
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-centos:8 bash -c "cd /mnt ; tox -re py3"
|
| |
+ podman run -it --rm -v `pwd`:/mnt:z koji-test-centos:9 bash -c "cd /mnt ; tox -re py3"
|
| |
+
|
| |
+ # If and only if "make build" fails, use "make force-tag" to
|
| |
# re-tag the version.
|
| |
#force-tag: $(SPECFILE)
|
| |
# @$(MAKE) tag TAG_OPTS="-F $(TAG_OPTS)"
|
| |
@@ -170,3 +181,4 @@
|
| |
|
| |
for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` \
|
| |
-C $$d install TYPE=$(TYPE); [ $$? = 0 ] || exit 1; done
|
| |
+
|
| |
New Fedora containers are available and EOLed CentOS images
are re-enabled to be able to build again.
Furthermore, new make targets (containers, container-test) are added
to run all tests in all supported containers locally.