testing: test building a source image from src.rpms
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
e6d201b553
commit
7ebf051043
4 changed files with 44 additions and 4 deletions
20
Makefile
20
Makefile
|
@ -2,6 +2,12 @@ SRC := ./BuildSourceImage.sh
|
|||
CTR_IMAGE := localhost/containers/buildsourceimage
|
||||
CTR_ENGINE ?= podman
|
||||
cleanfiles =
|
||||
# these are packages whose src.rpms are very small
|
||||
srpm_urls = \
|
||||
https://archive.kernel.org/centos-vault/7.0.1406/os/Source/SPackages/basesystem-10.0-7.el7.centos.src.rpm \
|
||||
https://archive.kernel.org/centos-vault/7.0.1406/os/Source/SPackages/rootfiles-8.1-11.el7.src.rpm \
|
||||
https://archive.kernel.org/centos-vault/7.0.1406/os/Source/SPackages/centos-bookmarks-7-1.el7.src.rpm
|
||||
srpms = $(addprefix ./.testprep/srpms/,$(notdir $(rpms)))
|
||||
|
||||
all: validate
|
||||
|
||||
|
@ -16,14 +22,20 @@ build-container: .build-container
|
|||
cleanfiles += .build-container
|
||||
.build-container: .validate Dockerfile $(SRC)
|
||||
@echo
|
||||
@echo "Building BuildSourceImage Container"
|
||||
@echo "==> Building BuildSourceImage Container"
|
||||
$(CTR_ENGINE) build --quiet --file Dockerfile --tag $(CTR_IMAGE) . && touch $@
|
||||
|
||||
cleanfiles += .testprep $(srpms)
|
||||
.testprep:
|
||||
@echo "==> Fetching SRPMs for testing against"
|
||||
mkdir -p $@/{srpms,tmp}
|
||||
wget -P $@/srpms/ $(srpm_urls)
|
||||
|
||||
.PHONY: test-integration
|
||||
test-integration: .build-container
|
||||
test-integration: .build-container .testprep
|
||||
@echo
|
||||
@echo "Running integration tests"
|
||||
CTR_IMAGE=$(CTR_IMAGE) CTR_ENGINE=$(CTR_ENGINE) bats test/
|
||||
@echo "==> Running integration tests"
|
||||
CTR_IMAGE=$(CTR_IMAGE) CTR_ENGINE=$(CTR_ENGINE) TMPDIR=$(shell realpath .testprep/tmp) bats test/
|
||||
|
||||
|
||||
clean:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue