* Misc: cleanup and restructure Makefile * Misc: use dind output target in Dockerfile * tests/e2e: ensure that the docker runner is really up before continuing * CI: add drone * Misc: fix image tag for e2e in Makefile * CI/drone: add build step, step conditionals and restrict to linux platform * CI/drone: add docs pipeline * Misc: allow setting e2e runner timeout via Makefile arg * CI/drone: add target platform for docs pipeline * CI: Goodbye travis * Misc: add drone make target to run drone CI locally * CI/drone: add basic pipelines for k3d-tools and k3d-proxy * remove ref event trigger
31 lines
719 B
Bash
Executable File
31 lines
719 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
[ -d "$CURR_DIR" ] || { echo "FATAL: no current dir (maybe running in zsh?)"; exit 1; }
|
|
|
|
: "${E2E_SKIP:=""}"
|
|
|
|
# shellcheck source=./common.sh
|
|
source "$CURR_DIR/common.sh"
|
|
|
|
#########################################################################################
|
|
|
|
[ -n "$EXE" ] || abort "no EXE provided"
|
|
|
|
info "Preparing filesystem and environment..."
|
|
|
|
mkdir -p $HOME/.kube
|
|
|
|
for i in $CURR_DIR/test_*.sh ; do
|
|
base=$(basename $i .sh)
|
|
if [[ $E2E_SKIP =~ (^| )$base($| ) ]]; then
|
|
highlight "***** Skipping $base *****"
|
|
else
|
|
highlight "***** Running $base *****"
|
|
$i || abort "test $base failed"
|
|
fi
|
|
done
|
|
|
|
exit 0
|
|
|