diff options
author | Nikita Kozlovskiy <nikitka@gmail.com> | 2023-07-06 17:09:58 +0000 |
---|---|---|
committer | nkozlovskiy <nmk@ydb.tech> | 2023-07-06 20:09:58 +0300 |
commit | 506c1df4b3809f0fc156136db88a47db9901028e (patch) | |
tree | a000abdde43ebfb619a69c33d81f37134c9ebba9 | |
parent | 881a94d5b1395a4d439e6517f933f0253f3d6c80 (diff) | |
download | ydb-506c1df4b3809f0fc156136db88a47db9901028e.tar.gz |
ci: debug info compression for sanitizers and increase memory for the VM
ci: debug info compression for sanitizers and increase memory for the VM
Pull Request resolved: #295
-rw-r--r-- | .github/actions/build/action.yml | 4 | ||||
-rw-r--r-- | .github/workflows/build_and_test_ondemand.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index dd8cffaba2..d42ee8fdb0 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -24,8 +24,8 @@ runs: cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_C_COMPILER_LAUNCHER=/usr/local/bin/ccache -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/local/bin/ccache \ -DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \ - -DCMAKE_CXX_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer -UNDEBUG" \ - -DCMAKE_C_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer -UNDEBUG" \ + -DCMAKE_CXX_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -gsplit-dwarf -gz -fno-omit-frame-pointer -UNDEBUG" \ + -DCMAKE_C_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -gsplit-dwarf -gz -fno-omit-frame-pointer -UNDEBUG" \ ../ydb - name: Configure shell: bash diff --git a/.github/workflows/build_and_test_ondemand.yml b/.github/workflows/build_and_test_ondemand.yml index 23517fbb48..5bd007df9a 100644 --- a/.github/workflows/build_and_test_ondemand.yml +++ b/.github/workflows/build_and_test_ondemand.yml @@ -60,7 +60,7 @@ jobs: disk-size: ${{vars.DISK_SIZE && vars.DISK_SIZE || '1023GB'}} disk-type: network-ssd-nonreplicated cores: 32 - memory: 64GB + memory: 128GB core-fraction: 100 zone-id: ru-central1-b subnet-id: ${{secrets.YC_SUBNET}} |