beetle-wswan-libretro/.gitlab-ci.yml

148 lines
3.8 KiB
YAML
Raw Normal View History

2020-12-08 21:20:31 +00:00
# DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper)
##############################################################################
################################# BOILERPLATE ################################
##############################################################################
# Core definitions
2020-10-06 21:48:55 +00:00
.core-defs:
variables:
JNI_PATH: .
2020-10-06 21:49:19 +00:00
CORENAME: mednafen_wswan
2020-10-06 21:48:55 +00:00
2020-12-08 21:20:31 +00:00
# Inclusion templates, required for the build to work
2020-10-06 21:48:55 +00:00
include:
2020-12-08 21:20:31 +00:00
################################## DESKTOPS ################################
# Windows 64-bit
2020-10-06 21:48:55 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-08 21:20:31 +00:00
file: '/windows-x64-mingw.yml'
# Linux 64-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-x64.yml'
# MacOS 64-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/osx-x64.yml'
################################## CELLULAR ################################
# Android
- project: 'libretro-infrastructure/ci-templates'
file: '/android-jni.yml'
################################## CONSOLES ################################
# PlayStation Vita
2020-10-06 21:48:55 +00:00
- project: 'libretro-infrastructure/ci-templates'
file: '/vita-static.yml'
2020-12-08 21:20:31 +00:00
# Nintendo 3DS
2020-10-06 21:48:55 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-08 21:20:31 +00:00
file: '/ctr-static.yml'
# Nintendo GameCube
2020-10-06 21:48:55 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-08 21:20:31 +00:00
file: '/ngc-static.yml'
# Nintendo Wii
- project: 'libretro-infrastructure/ci-templates'
2020-12-08 21:20:31 +00:00
file: '/wii-static.yml'
# Nintendo Switch
2020-10-06 21:48:55 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-08 21:20:31 +00:00
file: '/libnx-static.yml'
2020-10-06 21:48:55 +00:00
2020-12-08 21:20:31 +00:00
# OpenDingux
- project: 'libretro-infrastructure/ci-templates'
file: '/dingux-mips32.yml'
# Stages for building
2020-10-06 21:48:55 +00:00
stages:
- build-prepare
- build-shared
- build-static
2020-12-08 21:20:31 +00:00
##############################################################################
#################################### STAGES ##################################
##############################################################################
#
################################### DESKTOPS #################################
# Windows 64-bit
libretro-build-windows-x64:
2020-10-06 21:48:55 +00:00
extends:
2020-12-08 21:20:31 +00:00
- .libretro-windows-x64-mingw-make-default
2020-10-06 21:48:55 +00:00
- .core-defs
2020-12-08 21:20:31 +00:00
# Linux 64-bit
libretro-build-linux-x64:
2020-10-06 21:48:55 +00:00
extends:
2020-12-08 21:20:31 +00:00
- .libretro-linux-x64-make-default
2020-10-06 21:48:55 +00:00
- .core-defs
2020-12-08 21:20:31 +00:00
# MacOS 64-bit
libretro-build-osx-x64:
extends:
2020-12-08 21:20:31 +00:00
- .libretro-osx-x64-make-default
- .core-defs
2020-12-08 21:20:31 +00:00
################################### CELLULAR #################################
# Android ARMv7a
2020-10-06 21:48:55 +00:00
android-armeabi-v7a:
extends:
- .libretro-android-jni-armeabi-v7a
2020-12-08 21:20:31 +00:00
- .core-defs
# Android ARMv8a
2020-10-06 21:48:55 +00:00
android-arm64-v8a:
extends:
- .libretro-android-jni-arm64-v8a
2020-12-08 21:20:31 +00:00
- .core-defs
# Android 64-bit x86
2020-10-06 21:48:55 +00:00
android-x86_64:
extends:
- .libretro-android-jni-x86_64
2020-12-08 21:22:03 +00:00
- .core-defs
2020-12-08 21:20:31 +00:00
# Android 32-bit x86
2020-10-06 21:48:55 +00:00
android-x86:
extends:
- .libretro-android-jni-x86
2020-12-08 21:20:31 +00:00
- .core-defs
################################### CONSOLES #################################
# PlayStation Vita
libretro-build-vita:
extends:
- .libretro-vita-static-retroarch-master
- .core-defs
# Nintendo 3DS
libretro-build-ctr:
extends:
- .libretro-ctr-static-retroarch-master
- .core-defs
# Nintendo GameCube
libretro-build-ngc:
extends:
- .libretro-ngc-static-retroarch-master
- .core-defs
2020-10-06 21:48:55 +00:00
2020-12-08 21:20:31 +00:00
# Nintendo Wii
libretro-build-wii:
2020-10-06 21:48:55 +00:00
extends:
2020-12-08 21:20:31 +00:00
- .libretro-wii-static-retroarch-master
2020-10-06 21:48:55 +00:00
- .core-defs
2020-12-08 21:20:31 +00:00
# Nintendo Switch
libretro-build-libnx-aarch64:
extends:
2020-10-06 21:48:55 +00:00
- .libretro-libnx-static-retroarch-master
2020-12-08 21:20:31 +00:00
- .core-defs
# OpenDingux
libretro-build-dingux-i386:
2020-10-06 21:48:55 +00:00
extends:
2020-12-08 21:20:31 +00:00
- .libretro-dingux-i386-make-default
2020-10-06 21:48:55 +00:00
- .core-defs