diff options
| -rw-r--r-- | .github/workflows/build_and_test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c994256d36c..13c61657dff 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -29,5 +29,7 @@ jobs: run: | rm -rf /mnt/d/tmp/* cd ../build/ydb - TMPDIR=/mnt/d/tmp ctest -j28 --timeout 1200 --force-new-ctest-process --output-on-failure | grep -E "(Test\s*#|grep "mFAIL"$'\33')" --color=never + # out test util provides output with coloring, so remove it using sed before sending to grep + TMPDIR=/mnt/d/tmp ctest -j28 --timeout 1200 --force-new-ctest-process --output-on-failure | sed -e 's/\x1b\[[0-9;]*m//g' | grep -E "(Test\s*#|\[FAIL\])" + |
