Compare commits
No commits in common. "1d2a8bcf96f89cfbb6c065d20a7105b36c828e89" and "4f18bc36d910894c22edc1426717476a9b1d2d24" have entirely different histories.
1d2a8bcf96
...
4f18bc36d9
|
@ -274,7 +274,6 @@ jobs:
|
||||||
if: matrix.opts.platform == 'web'
|
if: matrix.opts.platform == 'web'
|
||||||
run: |
|
run: |
|
||||||
emcc -v
|
emcc -v
|
||||||
llvm-objcopy --help
|
|
||||||
|
|
||||||
- name: Set up scons
|
- name: Set up scons
|
||||||
if: matrix.opts.platform != 'linux'
|
if: matrix.opts.platform != 'linux'
|
||||||
|
@ -361,9 +360,9 @@ jobs:
|
||||||
if: inputs.debug-symbols && matrix.opts.platform == 'web'
|
if: inputs.debug-symbols && matrix.opts.platform == 'web'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
emstrip --only-keep-debug -o ${{matrix.opts.bin}}.debug ${{matrix.opts.bin}}
|
ls -R emsdk-cache/
|
||||||
emstrip --strip-debug ${{matrix.opts.bin}}
|
echo "---"
|
||||||
llvm-objcopy --add-gnu-debuglink ${{matrix.opts.bin}}.debug ${{matrix.opts.bin}}
|
echo ${PATH}
|
||||||
|
|
||||||
- name: Split debug symbols (Android)
|
- name: Split debug symbols (Android)
|
||||||
if: inputs.debug-symbols && matrix.opts.platform == 'android'
|
if: inputs.debug-symbols && matrix.opts.platform == 'android'
|
||||||
|
@ -380,30 +379,18 @@ jobs:
|
||||||
cp {README,LICENSE,LOGO_LICENSE}.md out/addons/limboai/
|
cp {README,LICENSE,LOGO_LICENSE}.md out/addons/limboai/
|
||||||
cp -R demo/demo/ out/demo/
|
cp -R demo/demo/ out/demo/
|
||||||
cp demo/LICENSE_ASSETS.md out/demo/
|
cp demo/LICENSE_ASSETS.md out/demo/
|
||||||
rm -f out/addons/limboai/bin/*.{exp,lib}
|
rm -f out/addons/limboai/bin/*.{exp,lib,pdb}
|
||||||
echo "${LIMBOAI_VERSION}" > out/addons/limboai/version.txt
|
echo "${LIMBOAI_VERSION}" > out/addons/limboai/version.txt
|
||||||
echo "---"
|
echo "---"
|
||||||
ls -R out/
|
ls -R out/
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
env:
|
||||||
|
NAME: tmp-gdextension.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
|
||||||
with:
|
with:
|
||||||
name: tmp-gdextension.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
|
name: ${{ env.NAME }}
|
||||||
path: |
|
path: out/*
|
||||||
out/*
|
|
||||||
!out/**/*.debug
|
|
||||||
!out/**/*.pdb
|
|
||||||
!out/**/*.dSYM
|
|
||||||
|
|
||||||
- name: Upload debug symbols
|
|
||||||
if: inputs.debug-symbols
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: tmp-gdextension-symbols.${{matrix.opts.platform}}.${{matrix.opts.target}}.${{matrix.opts.arch}}
|
|
||||||
path: |
|
|
||||||
out/**/*.debug
|
|
||||||
out/**/*.pdb
|
|
||||||
out/**/*.dSYM
|
|
||||||
|
|
||||||
package-extension:
|
package-extension:
|
||||||
name: 📦 Package extension
|
name: 📦 Package extension
|
||||||
|
@ -418,14 +405,6 @@ jobs:
|
||||||
pattern: tmp-gdextension.*
|
pattern: tmp-gdextension.*
|
||||||
delete-merged: true
|
delete-merged: true
|
||||||
|
|
||||||
- name: Merge debug symbols artifacts
|
|
||||||
if: inputs.debug-symbols
|
|
||||||
uses: actions/upload-artifact/merge@v4
|
|
||||||
with:
|
|
||||||
name: ${{needs.gdextension.outputs.name-prefix}}.debug-symbols
|
|
||||||
pattern: tmp-gdextension-symbols.*
|
|
||||||
delete-merged: true
|
|
||||||
|
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue