(.gitlab-ci.yml) Ensure that Windows and Linux binaries are stripped (#78)

This commit is contained in:
jdgleaver 2021-03-30 18:17:51 +01:00 committed by GitHub
parent 12d0a0c68b
commit 9aff32cc63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,7 @@
extends: .core-defs
after_script:
- mv ${MAKEFILE_PATH}/out/${CORENAME}_libretro.dll ${CORENAME}_libretro.dll
- if [ $STRIP_CORE_LIB -eq 1 ]; then strip --strip-unneeded ${CORENAME}_libretro.dll; fi
variables:
platform: windows
@ -25,6 +26,7 @@
extends: .core-defs
after_script:
- mv ${MAKEFILE_PATH}/out/${CORENAME}_libretro.so ${CORENAME}_libretro.so
- if [ $STRIP_CORE_LIB -eq 1 ]; then strip --strip-unneeded ${CORENAME}_libretro.so; fi
variables:
platform: linux