summaryrefslogtreecommitdiff
path: root/test_docker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test_docker.sh')
-rwxr-xr-xtest_docker.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/test_docker.sh b/test_docker.sh
deleted file mode 100755
index ad2bc5d..0000000
--- a/test_docker.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# Test with various versions of ubuntu. This more or less re-creates the
-# Travis CI test environment
-
-set -e
-
-DEFAULT_TARGETS="xenial bionic focal centos7 centos8 archlinux alpine"
-
-TARGETS=${1:-${DEFAULT_TARGETS}}
-
-HERE=`dirname $0`
-
-for i in $TARGETS; do
- TAG="python_magic/${i}:latest"
- docker build -t $TAG -f ${HERE}/test/docker/$i .
- docker run $TAG
-done