gpsp/.gitlab-ci.yml

59 lines
1.3 KiB
YAML
Raw Normal View History

2020-11-10 19:26:14 +01:00
# TODO/FIXME - doesn't build for now for Android armeabi v7a and x86 32bit,
# will perhaps need an older toolchain for this
2020-10-08 05:18:01 +02:00
.core-defs:
variables:
JNI_PATH: .
CORENAME: gpsp
include:
- template: Jobs/Code-Quality.gitlab-ci.yml
- project: 'libretro-infrastructure/ci-templates'
file: '/vita-static.yml'
2020-10-18 19:28:16 +02:00
- project: 'libretro-infrastructure/ci-templates'
file: '/psp-static.yml'
2020-10-08 05:18:01 +02:00
- 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
2020-10-18 19:28:16 +02:00
libretro-build-psp:
extends:
- .core-defs
- .libretro-psp-static-retroarch-master