gpsp/.gitlab-ci.yml

59 lines
1.3 KiB
YAML

# TODO/FIXME - doesn't build for now for Android armeabi v7a and x86 32bit,
# will perhaps need an older toolchain for this
.core-defs:
variables:
JNI_PATH: .
CORENAME: gpsp
include:
- template: Jobs/Code-Quality.gitlab-ci.yml
- project: 'libretro-infrastructure/ci-templates'
file: '/vita-static.yml'
- project: 'libretro-infrastructure/ci-templates'
file: '/psp-static.yml'
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-x64.yml'
- project: 'libretro-infrastructure/ci-templates'
file: '/windows-x64-mingw.yml'
- project: 'libretro-infrastructure/ci-templates'
file: '/android-jni.yml'
stages:
- build-prepare
- build-shared
- build-static
- test
#Desktop
libretro-build-linux-x64:
extends:
- .core-defs
- .libretro-linux-x64-make-default
libretro-build-windows-x64:
extends:
- .core-defs
- .libretro-windows-x64-mingw-make-default
# Android
android-arm64-v8a:
extends:
- .core-defs
- .libretro-android-jni-arm64-v8a
android-x86_64:
extends:
- .core-defs
- .libretro-android-jni-x86_64
# Static
libretro-build-vita:
extends:
- .core-defs
- .libretro-vita-static-retroarch-master
libretro-build-psp:
extends:
- .core-defs
- .libretro-psp-static-retroarch-master