#!/bin/bash set -e -x cd $(dirname $0)/.. . ./scripts/version.sh . ./scripts/test-helpers artifacts=$(pwd)/dist/artifacts mkdir -p $artifacts # --- docker ps # --- . ./scripts/test-run-basics echo "Did test-run-basics $?" . ./scripts/test-run-compat echo "Did test-run-compat $?" . ./scripts/test-run-etcd echo "Did test-run-etcd $?" . ./scripts/test-run-lazypull echo "Did test-run-lazypull $?" # --- [ "$ARCH" != 'amd64' ] && \ early-exit "Skipping remaining tests, images not available for $ARCH." E2E_OUTPUT=$artifacts test-run-sonobuoy serial echo "Did test-run-sonobuoy serial $?" exit 0