Skip to content
Snippets Groups Projects
Commit cbed6ecd authored by Christian Goetze (CG)'s avatar Christian Goetze (CG)
Browse files

Place test service messages into their own block.

parent c875b929
No related branches found
No related tags found
No related merge requests found
......@@ -222,7 +222,10 @@ do
fi
else
begin_section "Build$variant"
build "$variant" "$build_dir" 2>&1 | tee -a "$build_log" | grep --line-buffered "^##teamcity"
build "$variant" "$build_dir" > "$build_log" 2>&1
begin_section Tests
grep --line-buffered "^##teamcity" "$build_log"
end_section Tests
if `cat "$build_dir/build_ok"`
then
echo so far so good.
......@@ -257,7 +260,9 @@ then
else
record_failure "Parallel build of \"$variant\" failed."
fi
begin_section Tests
tee -a $build_log < "$build_dir/build.log" | grep --line-buffered "^##teamcity"
end_section Tests
end_section "Build$variant"
done
end_section WaitParallel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment