diff --git a/.ci/run.sh b/.ci/run.sh index 86f3e4a4b..52482b1f0 100755 --- a/.ci/run.sh +++ b/.ci/run.sh @@ -21,10 +21,20 @@ if [ "$ID" == "ubuntu" ] && [ "$VERSION_ID" == "17.04" ]; then export CRIO_STORAGE_DRIVER_OPTS="--storage-driver=devicemapper" fi +start_test=$(date '+%Y-%m-%d %H:%M:%S') +echo "<===============================================>" +echo "DEBUG: Logs from make check" sudo -E PATH="$PATH" bash -c "make check" +echo "<===============================================>" # Currently, Openshift tests only work on Fedora. # We should delete this condition, when it works for Ubuntu. if [ "$ID" == fedora ]; then + start_test=$(date '+%Y-%m-%d %H:%M:%S') sudo -E PATH="$PATH" bash -c "make openshift" + echo "<===============================================>" + echo "DEBUG: Logs from openshift tests" + sudo journalctl -t cc-runtime -f --since="${start_test}" + echo "<===============================================>" fi +