From 3aeea67f373fde8a05cd8a72367a48f1d3a4288d Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 21 Jun 2022 11:02:07 +0200 Subject: Add podman local test runner --- run-tests.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 run-tests.sh (limited to 'run-tests.sh') diff --git a/run-tests.sh b/run-tests.sh new file mode 100755 index 0000000..50af316 --- /dev/null +++ b/run-tests.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +rm -rf podman/testdata/git +git clone --depth 1 . podman/testdata/git + +for distro in arch ubuntu +do + podman build -t gerbonara-$distro-testenv -f podman/$distro-testenv + mkdir -p /tmp/gerbonara-test-out + podman run --mount type=bind,src=podman/testdata,dst=/data,ro --mount type=bind,src=/tmp/gerbonara-test-out,dst=/out gerbonara-$distro-testenv /data/testscript.sh +done + -- cgit