retro8/.gitlab-ci.yml

289 lines
6.6 KiB
YAML
Raw Permalink Normal View History

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