diff options
Diffstat (limited to 'testrun.sh')
-rwxr-xr-x | testrun.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testrun.sh b/testrun.sh new file mode 100755 index 0000000..e400469 --- /dev/null +++ b/testrun.sh @@ -0,0 +1,13 @@ +#!/bin/bash + + +mkdir -p testrun/db +mkdir -p testrun/pkgout + +./build.sh + +docker run --name archpkg-test --env PACKAGE_NAME=python-octodns \ + -v $(pwd)/testrun/db:/db -v $(pwd)/testrun/pkgout:/pkgout \ + archpkg + +docker rm archpkg-test |