Skip to content

Commit

Permalink
Don't fail if there are no big test logs
Browse files Browse the repository at this point in the history
It should be enough to have the small test logs.
Big tests don't need to be compiled for small tests to succeed.
  • Loading branch information
chrzaszcz committed Mar 16, 2023
1 parent 5fe1413 commit 4443ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/circleci-prepare-log-dir.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ for dev_node_logs_path in `find _build -name log -type d`; do
done

cp *.log ${LOG_DIR_ROOT}
cp big_tests/*.log ${LOG_DIR_ROOT}
cp big_tests/*.log ${LOG_DIR_ROOT} || true

0 comments on commit 4443ed1

Please sign in to comment.