Skip to content

Commit c073323

Browse files
authored
Use -DDEBUGINFO_LINES_ONLY for all build types (#7504)
1 parent 70f0ddd commit c073323

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/actions/test_ya/action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ runs:
191191
--stat
192192
--test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}"
193193
-DUSE_EAT_MY_DATA
194+
-DDEBUGINFO_LINES_ONLY
194195
)
195196
196197
TEST_RETRY_COUNT=${{ inputs.test_retry_count }}
@@ -215,7 +216,6 @@ runs:
215216
release-asan)
216217
params+=(
217218
--build "release" --sanitize="address"
218-
-DDEBUGINFO_LINES_ONLY
219219
)
220220
if [ $TEST_RETRY_COUNT -z ]; then
221221
TEST_RETRY_COUNT=1
@@ -225,7 +225,6 @@ runs:
225225
release-tsan)
226226
params+=(
227227
--build "release" --sanitize="thread"
228-
-DDEBUGINFO_LINES_ONLY
229228
)
230229
if [ $TEST_RETRY_COUNT -z ]; then
231230
TEST_RETRY_COUNT=1
@@ -235,7 +234,6 @@ runs:
235234
release-msan)
236235
params+=(
237236
--build "release" --sanitize="memory"
238-
-DDEBUGINFO_LINES_ONLY
239237
)
240238
if [ $TEST_RETRY_COUNT -z ]; then
241239
TEST_RETRY_COUNT=1

0 commit comments

Comments
 (0)