diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-10-08 15:05:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 15:05:00 +0300 |
commit | 6783025fce91a67d0bd56ca8286cf8a6db04943a (patch) | |
tree | 3ee69d26439ab4848a5bba3103026a9f902c047e | |
parent | 8b39e36b2293ada1eae6b0919d9d12fcdd8e65df (diff) | |
download | ydb-6783025fce91a67d0bd56ca8286cf8a6db04943a.tar.gz |
-DDEBUGINFO_LINES_ONLY only for CI checks (#10181)
-rw-r--r-- | .github/actions/test_ya/action.yml | 1 | ||||
-rw-r--r-- | .github/workflows/build_analytics.yml | 2 | ||||
-rw-r--r-- | .github/workflows/postcommit_asan.yml | 1 | ||||
-rw-r--r-- | .github/workflows/postcommit_relwithdebinfo.yml | 1 | ||||
-rw-r--r-- | .github/workflows/pr_check.yml | 1 |
5 files changed, 4 insertions, 2 deletions
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index f05ba29cec..e9e8a7f36f 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -193,7 +193,6 @@ runs: --stat --test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}" -DUSE_EAT_MY_DATA - -DDEBUGINFO_LINES_ONLY ) TEST_RETRY_COUNT=${{ inputs.test_retry_count }} diff --git a/.github/workflows/build_analytics.yml b/.github/workflows/build_analytics.yml index 076c7bcfe1..c15cc3ace1 100644 --- a/.github/workflows/build_analytics.yml +++ b/.github/workflows/build_analytics.yml @@ -50,7 +50,7 @@ jobs: increment: false run_tests: false put_build_results_to_cache: false - additional_ya_make_args: "-DDUMP_LINKER_MAP -DCOMPILER_TIME_TRACE --add-result .json" + additional_ya_make_args: "-DDEBUGINFO_LINES_ONLY -DDUMP_LINKER_MAP -DCOMPILER_TIME_TRACE --add-result .json" secs: ${{ format('{{"TESTMO_TOKEN2":"{0}","AWS_KEY_ID":"{1}","AWS_KEY_VALUE":"{2}","REMOTE_CACHE_USERNAME":"{3}","REMOTE_CACHE_PASSWORD":"{4}"}}', secrets.TESTMO_TOKEN2, secrets.AWS_KEY_ID, secrets.AWS_KEY_VALUE, secrets.REMOTE_CACHE_USERNAME, secrets.REMOTE_CACHE_PASSWORD ) }} vars: ${{ format('{{"AWS_BUCKET":"{0}","AWS_ENDPOINT":"{1}","REMOTE_CACHE_URL":"{2}","TESTMO_URL":"{3}","TESTMO_PROJECT_ID":"{4}"}}', diff --git a/.github/workflows/postcommit_asan.yml b/.github/workflows/postcommit_asan.yml index b49551e327..336af9ba9c 100644 --- a/.github/workflows/postcommit_asan.yml +++ b/.github/workflows/postcommit_asan.yml @@ -32,6 +32,7 @@ jobs: test_size: "small,medium" test_threads: 52 put_build_results_to_cache: true + additional_ya_make_args: -DDEBUGINFO_LINES_ONLY # we don't need full symbols in CI checks secs: ${{ format('{{"TESTMO_TOKEN2":"{0}","AWS_KEY_ID":"{1}","AWS_KEY_VALUE":"{2}","REMOTE_CACHE_USERNAME":"{3}","REMOTE_CACHE_PASSWORD":"{4}"}}', secrets.TESTMO_TOKEN2, secrets.AWS_KEY_ID, secrets.AWS_KEY_VALUE, secrets.REMOTE_CACHE_USERNAME, secrets.REMOTE_CACHE_PASSWORD ) }} vars: ${{ format('{{"AWS_BUCKET":"{0}","AWS_ENDPOINT":"{1}","REMOTE_CACHE_URL":"{2}","TESTMO_URL":"{3}","TESTMO_PROJECT_ID":"{4}"}}', diff --git a/.github/workflows/postcommit_relwithdebinfo.yml b/.github/workflows/postcommit_relwithdebinfo.yml index aca0428c2b..4655f625b8 100644 --- a/.github/workflows/postcommit_relwithdebinfo.yml +++ b/.github/workflows/postcommit_relwithdebinfo.yml @@ -31,6 +31,7 @@ jobs: test_size: "small,medium" test_threads: 52 put_build_results_to_cache: true + additional_ya_make_args: -DDEBUGINFO_LINES_ONLY # we don't need full symbols in CI checks secs: ${{ format('{{"TESTMO_TOKEN2":"{0}","AWS_KEY_ID":"{1}","AWS_KEY_VALUE":"{2}","REMOTE_CACHE_USERNAME":"{3}","REMOTE_CACHE_PASSWORD":"{4}"}}', secrets.TESTMO_TOKEN2, secrets.AWS_KEY_ID, secrets.AWS_KEY_VALUE, secrets.REMOTE_CACHE_USERNAME, secrets.REMOTE_CACHE_PASSWORD ) }} vars: ${{ format('{{"AWS_BUCKET":"{0}","AWS_ENDPOINT":"{1}","REMOTE_CACHE_URL":"{2}","TESTMO_URL":"{3}","TESTMO_PROJECT_ID":"{4}"}}', diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index 25186a97dc..fbdf4c6d88 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -229,6 +229,7 @@ jobs: test_size: "small,medium" test_threads: 52 put_build_results_to_cache: true + additional_ya_make_args: -DDEBUGINFO_LINES_ONLY # we don't need full symbols in CI checks secs: ${{ format('{{"TESTMO_TOKEN2":"{0}","AWS_KEY_ID":"{1}","AWS_KEY_VALUE":"{2}","REMOTE_CACHE_USERNAME":"{3}","REMOTE_CACHE_PASSWORD":"{4}"}}', secrets.TESTMO_TOKEN2, secrets.AWS_KEY_ID, secrets.AWS_KEY_VALUE, secrets.REMOTE_CACHE_USERNAME, secrets.REMOTE_CACHE_PASSWORD ) }} vars: ${{ format('{{"AWS_BUCKET":"{0}","AWS_ENDPOINT":"{1}","REMOTE_CACHE_URL":"{2}","TESTMO_URL":"{3}","TESTMO_PROJECT_ID":"{4}"}}', |