diff options
author | alexv-smirnov <alex@ydb.tech> | 2022-12-28 21:37:30 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2022-12-28 21:37:30 +0300 |
commit | 17fa3898b268ecfd63172c8d34609e32948cf07f (patch) | |
tree | 1ef59fd71148b5109c6801e0838d32d40bdba61c | |
parent | 28a89470b388d97ecddfaddee9ea521b8a8d900f (diff) | |
download | ydb-17fa3898b268ecfd63172c8d34609e32948cf07f.tar.gz |
Use alternate tmpdir when running ctest, with its cleaunp
-rw-r--r-- | .github/workflows/build_and_test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 216d4ef0ea..35e31f7bdd 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -27,6 +27,7 @@ jobs: - name: Test shell: bash run: | + rm -rf /mnt/d/tmp/* cd ../build/ydb - ctest -j28 --timeout 1200 --force-new-ctest-process + TMPDIR=/mnt/d/tmp ctest -j28 --timeout 1200 --force-new-ctest-process |