diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-13 18:58:24 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-13 18:58:24 +0300 |
commit | 88debe531eaa92905e9ae89679b0b2a7fa51cb9c (patch) | |
tree | 8074de93e1e47ad4cdd9511d75ba56d6f3d580ba | |
parent | 71f3ae2472ddd4b8fc518eb02e0ac5ff006b4de2 (diff) | |
download | ydb-88debe531eaa92905e9ae89679b0b2a7fa51cb9c.tar.gz |
YDB OSS CI: Relative path for temp dir
-rw-r--r-- | .github/workflows/build_and_test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c842d71e798..f3355201473 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -31,10 +31,10 @@ jobs: - name: Test shell: bash run: | - rm -rf /mnt/d/tmp/* cd ../build/ydb + rm -rf $(pwd)/../../tmp/* # Our 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 | \ + TMPDIR=$(pwd)/../../tmp ctest -j28 --timeout 1200 --force-new-ctest-process --output-on-failure | \ sed -e 's/\x1b\[[0-9;]*m//g' | \ tee testrun.log | \ grep -E '(Test\s*#.*\*\*\*|\[FAIL\])|.*tests passed,.*tests failed out of' |