separate symbols again

This commit is contained in:
Serhii Snitsaruk 2024-12-18 11:25:01 +01:00
parent 12f94db55a
commit e9d538ef47
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 18 additions and 16 deletions

View File

@ -396,16 +396,19 @@ jobs:
name: tmp-gdextension.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}} name: tmp-gdextension.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
path: | path: |
out/* out/*
!out/**/*.debug
!out/**/*.pdb
!out/**/*.dSYM
# - name: Upload debug symbols - name: Upload debug symbols
# if: matrix.opts.debug-symbols if: matrix.opts.debug-symbols
# uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
# with: with:
# name: tmp-gdextension-symbols.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}} name: tmp-gdextension-symbols.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
# path: | path: |
# out/**/*.debug out/**/*.debug
# out/**/*.pdb out/**/*.pdb
# out/**/*.dSYM out/**/*.dSYM
package-extension: package-extension:
name: 📦 Package extension name: 📦 Package extension
@ -420,13 +423,12 @@ jobs:
pattern: tmp-gdextension.* pattern: tmp-gdextension.*
delete-merged: true delete-merged: true
# - name: Merge debug symbols artifacts - name: Merge debug symbols artifacts
# if: inputs.debug-symbols uses: actions/upload-artifact/merge@v4
# uses: actions/upload-artifact/merge@v4 with:
# with: name: ${{needs.gdextension.outputs.name-prefix}}.debug-symbols
# name: ${{needs.gdextension.outputs.name-prefix}}.debug-symbols pattern: tmp-gdextension-symbols.*
# pattern: tmp-gdextension-symbols.* delete-merged: true
# delete-merged: true
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4