GHA: Fix strip failing in Linux ARM64 builds
This commit is contained in:
parent
dad5082e7e
commit
af27aca021
|
@ -231,7 +231,11 @@ jobs:
|
||||||
env:
|
env:
|
||||||
OUTDIR: ${{ startsWith(matrix.opts.target, 'template') && 'out/templates' || 'out/' }}
|
OUTDIR: ${{ startsWith(matrix.opts.target, 'template') && 'out/templates' || 'out/' }}
|
||||||
run: |
|
run: |
|
||||||
strip ./bin/godot.*
|
if [ "${{matrix.opts.arch}}" == "arm64" ]; then
|
||||||
|
${GITHUB_WORKSPACE}/buildroot/bin/aarch64-godot-linux-gnu-strip ./bin/godot.*
|
||||||
|
else
|
||||||
|
strip ./bin/godot.*
|
||||||
|
fi
|
||||||
chmod +x ./bin/godot.*
|
chmod +x ./bin/godot.*
|
||||||
mkdir -p ${{env.OUTDIR}}
|
mkdir -p ${{env.OUTDIR}}
|
||||||
mv bin/* ${{env.OUTDIR}}
|
mv bin/* ${{env.OUTDIR}}
|
||||||
|
|
Loading…
Reference in New Issue