2020-12-06 19:45:23 +01:00
|
|
|
# DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper)
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
################################# BOILERPLATE ################################
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# Core definitions
|
2020-10-08 05:18:01 +02:00
|
|
|
.core-defs:
|
|
|
|
variables:
|
|
|
|
JNI_PATH: .
|
2020-12-06 19:45:23 +01:00
|
|
|
CORENAME: gpsp
|
2020-10-08 05:18:01 +02:00
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Inclusion templates, required for the build to work
|
2020-10-08 05:18:01 +02:00
|
|
|
include:
|
2020-12-06 19:45:23 +01:00
|
|
|
################################## DESKTOPS ################################
|
|
|
|
# Windows 64-bit
|
2020-10-08 05:18:01 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/windows-x64-mingw.yml'
|
|
|
|
|
2021-01-03 01:10:16 +01:00
|
|
|
# Windows 32-bit
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/windows-i686-mingw.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Linux 64-bit
|
2020-10-18 19:28:16 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/linux-x64.yml'
|
|
|
|
|
2021-01-09 16:40:28 +01:00
|
|
|
# Linux 32-bit
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/linux-i686.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# MacOS 64-bit
|
2020-12-03 13:09:53 +01:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/osx-x64.yml'
|
|
|
|
|
2021-03-09 22:05:36 +01:00
|
|
|
# MacOS ARM 64-bit
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/osx-arm64.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
################################## CELLULAR ################################
|
|
|
|
# Android
|
2020-10-08 05:18:01 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/android-jni.yml'
|
|
|
|
|
2021-03-09 04:45:35 +01:00
|
|
|
# iOS
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/ios-arm64.yml'
|
|
|
|
|
|
|
|
# iOS (armv7)
|
2021-01-09 16:40:28 +01:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/ios9.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
################################## CONSOLES ################################
|
2023-02-21 19:04:50 +01:00
|
|
|
# PlayStation2
|
2021-07-24 02:00:16 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/ps2-static.yml'
|
|
|
|
|
2023-02-21 19:04:50 +01:00
|
|
|
# PlayStation3
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/psl1ght-static.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# PlayStation Portable
|
2020-10-08 05:18:01 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/psp-static.yml'
|
|
|
|
|
|
|
|
# PlayStation Vita
|
2020-11-27 11:51:46 +01:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/vita-static.yml'
|
|
|
|
|
|
|
|
# Nintendo 3DS
|
2020-10-08 05:18:01 +02:00
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
2020-12-06 19:45:23 +01:00
|
|
|
file: '/ctr-static.yml'
|
|
|
|
|
2021-06-27 01:16:28 +02:00
|
|
|
# Nintendo GameCube
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/ngc-static.yml'
|
|
|
|
|
|
|
|
# Nintendo Wii
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/wii-static.yml'
|
|
|
|
|
|
|
|
# Nintendo WiiU
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/wiiu-static.yml'
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Nintendo Switch
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/libnx-static.yml'
|
2020-10-08 05:18:01 +02:00
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# OpenDingux
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/dingux-mips32.yml'
|
|
|
|
|
2021-11-14 09:58:26 +01:00
|
|
|
# OpenDingux (ARM)
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/dingux-arm32.yml'
|
|
|
|
|
2021-03-09 04:45:35 +01:00
|
|
|
# tvOS (AppleTV)
|
|
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
|
|
file: '/tvos-arm64.yml'
|
|
|
|
|
|
|
|
#################################### MISC ##################################
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Stages for building
|
2020-10-08 05:18:01 +02:00
|
|
|
stages:
|
|
|
|
- build-prepare
|
|
|
|
- build-shared
|
|
|
|
- build-static
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
##############################################################################
|
|
|
|
#################################### STAGES ##################################
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
################################### DESKTOPS #################################
|
|
|
|
# Windows 64-bit
|
|
|
|
libretro-build-windows-x64:
|
|
|
|
extends:
|
|
|
|
- .libretro-windows-x64-mingw-make-default
|
|
|
|
- .core-defs
|
|
|
|
|
2021-01-03 01:10:16 +01:00
|
|
|
# Windows 32-bit
|
|
|
|
libretro-build-windows-i686:
|
|
|
|
extends:
|
|
|
|
- .libretro-windows-i686-mingw-make-default
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Linux 64-bit
|
2020-10-08 05:18:01 +02:00
|
|
|
libretro-build-linux-x64:
|
|
|
|
extends:
|
|
|
|
- .libretro-linux-x64-make-default
|
2020-12-03 13:09:53 +01:00
|
|
|
- .core-defs
|
2020-10-08 05:18:01 +02:00
|
|
|
|
2021-01-09 16:40:28 +01:00
|
|
|
# Linux 32-bit
|
|
|
|
libretro-build-linux-i686:
|
|
|
|
extends:
|
|
|
|
- .libretro-linux-i686-make-default
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# MacOS 64-bit
|
|
|
|
libretro-build-osx-x64:
|
2020-10-08 05:18:01 +02:00
|
|
|
extends:
|
2022-07-26 14:28:22 +02:00
|
|
|
- .libretro-osx-x64-make-10-7
|
2020-12-03 13:09:53 +01:00
|
|
|
- .core-defs
|
2020-11-27 11:51:46 +01:00
|
|
|
|
2021-03-09 22:05:36 +01:00
|
|
|
# MacOS ARM 64-bit
|
|
|
|
libretro-build-osx-arm64:
|
|
|
|
extends:
|
|
|
|
- .libretro-osx-arm64-make-default
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
################################### CELLULAR #################################
|
2021-07-31 17:45:46 +02:00
|
|
|
# Android ARMv7a
|
|
|
|
android-armeabi-v7a:
|
|
|
|
extends:
|
|
|
|
- .libretro-android-jni-armeabi-v7a
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Android ARMv8a
|
2020-10-08 05:18:01 +02:00
|
|
|
android-arm64-v8a:
|
|
|
|
extends:
|
|
|
|
- .libretro-android-jni-arm64-v8a
|
2020-12-03 13:09:53 +01:00
|
|
|
- .core-defs
|
2020-10-08 05:18:01 +02:00
|
|
|
|
2021-07-28 19:14:45 +02:00
|
|
|
# Android 32-bit x86
|
|
|
|
android-x86:
|
|
|
|
extends:
|
|
|
|
- .libretro-android-jni-x86
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# Android 64-bit x86
|
2020-10-08 05:18:01 +02:00
|
|
|
android-x86_64:
|
|
|
|
extends:
|
|
|
|
- .libretro-android-jni-x86_64
|
2020-12-03 13:09:53 +01:00
|
|
|
- .core-defs
|
2021-01-09 16:40:28 +01:00
|
|
|
|
2021-03-09 04:45:35 +01:00
|
|
|
# iOS
|
|
|
|
libretro-build-ios-arm64:
|
|
|
|
extends:
|
|
|
|
- .libretro-ios-arm64-make-default
|
|
|
|
- .core-defs
|
|
|
|
|
|
|
|
# iOS (armv7) [iOS 9 and up]
|
|
|
|
libretro-build-ios9:
|
2021-01-09 16:40:28 +01:00
|
|
|
extends:
|
|
|
|
- .libretro-ios9-make-default
|
|
|
|
- .core-defs
|
2021-03-09 04:45:35 +01:00
|
|
|
|
|
|
|
# tvOS
|
|
|
|
libretro-build-tvos-arm64:
|
|
|
|
extends:
|
|
|
|
- .libretro-tvos-arm64-make-default
|
|
|
|
- .core-defs
|
2021-01-09 16:40:28 +01:00
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
################################### CONSOLES #################################
|
2023-02-21 19:04:50 +01:00
|
|
|
# PlayStation2
|
2021-07-25 20:01:36 +02:00
|
|
|
libretro-build-ps2:
|
|
|
|
extends:
|
|
|
|
- .libretro-ps2-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
2023-02-21 19:04:50 +01:00
|
|
|
# PlayStation3
|
|
|
|
libretro-build-psl1ght:
|
|
|
|
extends:
|
|
|
|
- .libretro-psl1ght-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# PlayStation Portable
|
2020-10-18 19:28:16 +02:00
|
|
|
libretro-build-psp:
|
|
|
|
extends:
|
|
|
|
- .libretro-psp-static-retroarch-master
|
2020-12-03 13:09:53 +01:00
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# PlayStation Vita
|
|
|
|
libretro-build-vita:
|
|
|
|
extends:
|
|
|
|
- .libretro-vita-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
|
|
|
# Nintendo 3DS
|
2020-12-03 13:09:53 +01:00
|
|
|
libretro-build-ctr:
|
|
|
|
extends:
|
|
|
|
- .libretro-ctr-static-retroarch-master
|
|
|
|
- .core-defs
|
2020-12-06 19:45:23 +01:00
|
|
|
|
2021-06-27 01:16:28 +02:00
|
|
|
# Nintendo GameCube
|
|
|
|
libretro-build-ngc:
|
|
|
|
extends:
|
|
|
|
- .libretro-ngc-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
|
|
|
# Nintendo Wii
|
|
|
|
libretro-build-wii:
|
|
|
|
extends:
|
|
|
|
- .libretro-wii-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
|
|
|
# Nintendo WiiU
|
|
|
|
libretro-build-wiiu:
|
|
|
|
extends:
|
|
|
|
- .libretro-wiiu-static-retroarch-master
|
|
|
|
- .core-defs
|
|
|
|
|
2020-12-06 19:45:23 +01:00
|
|
|
# OpenDingux
|
|
|
|
libretro-build-dingux-mips32:
|
|
|
|
extends:
|
|
|
|
- .libretro-dingux-mips32-make-default
|
|
|
|
- .core-defs
|
2021-03-25 21:21:21 +01:00
|
|
|
|
|
|
|
# OpenDingux Beta
|
|
|
|
libretro-build-dingux-odbeta-mips32:
|
|
|
|
extends:
|
|
|
|
- .libretro-dingux-odbeta-mips32-make-default
|
|
|
|
- .core-defs
|
2021-07-23 21:09:17 +02:00
|
|
|
|
|
|
|
# RS-90 OpenDingux Beta
|
|
|
|
libretro-build-rs90-odbeta-mips32:
|
|
|
|
extends:
|
|
|
|
- .libretro-rs90-odbeta-mips32-make-default
|
|
|
|
- .core-defs
|
2021-07-29 13:06:25 +02:00
|
|
|
|
|
|
|
# RetroFW
|
|
|
|
libretro-build-retrofw-mips32:
|
|
|
|
extends:
|
|
|
|
- .libretro-retrofw-mips32-make-default
|
|
|
|
- .core-defs
|
2021-11-14 09:58:26 +01:00
|
|
|
|
|
|
|
# Miyoo
|
|
|
|
libretro-build-miyoo-arm32:
|
|
|
|
extends:
|
|
|
|
- .libretro-miyoo-arm32-make-default
|
|
|
|
- .core-defs
|