aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexSm <81806911+alexv-smirnov@users.noreply.github.com>2023-01-13 09:09:52 +0100
committerGitHub <noreply@github.com>2023-01-13 09:09:52 +0100
commit2aa80e454c55b66233955b9a544339e038718ff8 (patch)
treeae9731cd29790c6ea890ce6c44e678085c2a039a
parent8aebefc945c5f48d45e55a8cad0d8a2c06617dec (diff)
downloadydb-2aa80e454c55b66233955b9a544339e038718ff8.tar.gz
Update build_and_test.ymlalexv-smirnov1
-rw-r--r--.github/workflows/build_and_test.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index c994256d36..13c61657df 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\])"
+