aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxim Yurchuk <maxim-yurchuk@ydb.tech>2024-07-01 14:31:39 +0300
committerGitHub <noreply@github.com>2024-07-01 14:31:39 +0300
commitef8c29b03822be1c889756ac323c2fd892cd3b47 (patch)
tree566cd334f3f12e8e56f699dafc8be137dafbbe30
parentc98299a11d3540c36e60da2948df1f0fd99e8dc2 (diff)
downloadydb-ef8c29b03822be1c889756ac323c2fd892cd3b47.tar.gz
Remove '--cache-size 512G' (do not erase files between build and test) (#6125)
-rw-r--r--.github/actions/build_ya/action.yml2
-rw-r--r--.github/actions/test_ya/action.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/build_ya/action.yml b/.github/actions/build_ya/action.yml
index c2d2deb712..8098294547 100644
--- a/.github/actions/build_ya/action.yml
+++ b/.github/actions/build_ya/action.yml
@@ -127,7 +127,7 @@ runs:
./ya make --build "${build_type}" --force-build-depends -T --stat -DCONSISTENT_DEBUG \
--log-file "$TMP_DIR/ya_log.txt" --evlog-file "$TMP_DIR/ya_evlog.jsonl" \
- --cache-size 512G --link-threads "${{ inputs.link_threads }}" \
+ --link-threads "${{ inputs.link_threads }}" \
"${extra_params[@]}" |& tee $TMP_DIR/ya_make.log && echo "status=true" >> $GITHUB_OUTPUT || (
RC=$?
echo "::debug::ya make RC=$RC"
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml
index ab2e1ff62f..bd098cb516 100644
--- a/.github/actions/test_ya/action.yml
+++ b/.github/actions/test_ya/action.yml
@@ -163,7 +163,7 @@ runs:
params=(
-T -k
${test_size[@]/#/--test-size=} ${test_type[@]/#/--test-type=}
- --cache-size 512G --do-not-output-stderrs
+ --do-not-output-stderrs
--stat
--test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}"
)