Unverified Commit d2756a76 authored by Erik Wilson's avatar Erik Wilson Committed by GitHub

Merge pull request #954 from erikwilson/enable-arm-tests

Enable tests for arm
parents 0966cea4 e0211b3f
......@@ -212,6 +212,14 @@ steps:
event:
- tag
- name: sonobuoy-e2e-tests
image: rancher/dapper:v0.4.2
commands:
- dapper -f Dockerfile.sonobuoy.dapper
volumes:
- name: docker
path: /var/run/docker.sock
volumes:
- name: docker
host:
......
......@@ -195,5 +195,10 @@ echo "Started ${K3S_AGENT}"
timeout --foreground 1m bash -c wait-for-nodes
timeout --foreground 1m bash -c wait-for-services
if [ "$ARCH" = "arm" ]; then
echo "Aborting sonobuoy tests, images not available for $ARCH"
exit 0
fi
echo "Starting sonobuoy tests"
sonobuoy-test "${@}"
......@@ -17,6 +17,28 @@ mkdir -p ${OUTPUT}
pids=()
output=()
show-logs() {
for pid in "${pids[@]}"; do
logdir=$(pwd)/logs/${pid}
if [ ! -d $logdir ]; then
continue
fi
echo
echo "#- Begin: logs for sonobuoy run pid ${pid}"
for log in $(pwd)/logs/${pid}/*; do
if [ -f ${log} ]; then
echo
echo "#- Start: ${log}"
cat ${log}
echo "#- End: ${log}"
echo
fi
done
echo "#- Finish: logs for sonobuoy run pid ${pid}"
echo
done
}
cleanup() {
exit_status=$?
set +e
......@@ -29,6 +51,7 @@ cleanup() {
echo "passed"
else
echo "failed"
show-logs
fi
exit ${exit_status}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment