Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/build_linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ inputs:
description: "Category to upload"
required: false
default: "default"
trim_debug:
description: "Trim debug info"
required: false
default: "true"
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -95,6 +99,7 @@ runs:
ldd ./target/${{ inputs.target }}/${{ env.BUILD_PROFILE }}/databend-query || true

- name: Spilt Binary Symbols
if: inputs.trim_debug == 'true'
shell: bash
run: |
objcopy --only-keep-debug ./target/${{ inputs.target }}/${{ env.BUILD_PROFILE }}/databend-query ./target/${{ inputs.target }}/${{ env.BUILD_PROFILE }}/databend-query.debug
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:
artifacts: meta,query
category: docker
features: python-udf
trim_debug: false

docker:
needs: [ info, build ]
Expand Down