FBNeo/.gitlab-ci.yml

224 lines
5.2 KiB
YAML
Raw Normal View History

2020-12-21 22:54:05 +00:00
# DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper)
##############################################################################
################################# BOILERPLATE ################################
##############################################################################
# Core definitions
2020-10-08 17:41:43 +00:00
.core-defs:
variables:
2020-10-08 17:56:59 +00:00
JNI_PATH: src/burner/libretro
MAKEFILE_PATH: src/burner/libretro
2020-10-08 17:41:43 +00:00
CORENAME: fbneo
2024-11-11 20:40:30 +00:00
.core-defs-neogeo:
extends: .core-defs
variables:
CORENAME: fbneo_neogeo
SUBSET: neogeo
.core-defs-cps12:
extends: .core-defs
variables:
CORENAME: fbneo_cps12
SUBSET: cps12
2020-12-21 22:54:05 +00:00
# Core definitions
2020-10-08 17:41:43 +00:00
include:
2020-12-21 22:54:05 +00:00
################################## DESKTOPS ################################
# Windows 64-bit
2020-10-08 17:41:43 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-21 22:54:05 +00:00
file: '/windows-x64-mingw.yml'
2021-04-06 07:40:59 +00:00
2021-01-01 23:12:45 +00:00
# Windows 32-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/windows-i686-mingw.yml'
2020-12-21 22:54:05 +00:00
# Linux 64-bit
2020-10-08 17:41:43 +00:00
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-x64.yml'
2020-12-21 22:54:05 +00:00
2021-01-07 21:36:23 +00:00
# Linux 32-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-i686.yml'
2020-12-21 22:54:05 +00:00
# MacOS 64-bit
2020-10-08 17:41:43 +00:00
- project: 'libretro-infrastructure/ci-templates'
2020-12-21 22:54:05 +00:00
file: '/osx-x64.yml'
2021-01-30 11:34:04 +00:00
# MacOS ARM 64-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/osx-arm64.yml'
2020-12-21 22:54:05 +00:00
################################## CELLULAR ################################
# Android
2020-10-08 17:41:43 +00:00
- project: 'libretro-infrastructure/ci-templates'
file: '/android-jni.yml'
2021-03-12 03:01:48 +00:00
# iOS
- project: 'libretro-infrastructure/ci-templates'
file: '/ios-arm64.yml'
# iOS (armv7)
2021-01-07 21:36:23 +00:00
- project: 'libretro-infrastructure/ci-templates'
file: '/ios9.yml'
2020-12-21 22:54:05 +00:00
################################## CONSOLES ################################
# Nintendo 3DS
- project: 'libretro-infrastructure/ci-templates'
file: '/ctr-static.yml'
2021-04-06 07:40:59 +00:00
2020-12-28 21:45:35 +00:00
# Nintendo WiiU
- project: 'libretro-infrastructure/ci-templates'
file: '/wiiu-static.yml'
2020-12-21 22:54:05 +00:00
# Nintendo Switch
- project: 'libretro-infrastructure/ci-templates'
file: '/libnx-static.yml'
# PlayStation Vita
- project: 'libretro-infrastructure/ci-templates'
file: '/vita-static.yml'
2021-03-12 03:01:48 +00:00
# tvOS (AppleTV)
- project: 'libretro-infrastructure/ci-templates'
file: '/tvos-arm64.yml'
#################################### MISC ##################################
2021-11-12 09:29:06 +00:00
# Emscripten
2021-11-21 08:13:07 +00:00
#- project: 'libretro-infrastructure/ci-templates'
# file: '/emscripten-static.yml'
2021-03-12 03:01:48 +00:00
2020-12-21 22:54:05 +00:00
# Stages for building
2020-10-08 17:41:43 +00:00
stages:
- build-prepare
- build-shared
- build-static
2020-12-21 22:54:05 +00:00
################################### DESKTOPS #################################
# Windows 64-bit
libretro-build-windows-x64:
extends:
- .libretro-windows-x64-mingw-make-default
- .core-defs
2021-01-01 23:12:45 +00:00
# Windows 32-bit
libretro-build-windows-i686:
extends:
- .libretro-windows-i686-mingw-make-default
- .core-defs
2020-12-21 22:54:05 +00:00
# Linux 64-bit
2020-10-08 17:41:43 +00:00
libretro-build-linux-x64:
extends:
- .libretro-linux-x64-make-default
- .core-defs
2021-01-07 21:36:23 +00:00
# Linux 32-bit
libretro-build-linux-i686:
extends:
- .libretro-linux-i686-make-default
- .core-defs
2020-12-21 22:54:05 +00:00
# MacOS 64-bit
libretro-build-osx-x64:
2021-02-21 06:23:14 +00:00
tags:
- macosx-packaging
2020-10-08 17:41:43 +00:00
extends:
2020-12-21 22:54:05 +00:00
- .libretro-osx-x64-make-default
- .core-defs
2021-01-30 11:34:04 +00:00
# MacOS ARM 64-bit
libretro-build-osx-arm64:
2021-02-21 06:23:14 +00:00
tags:
- macosx-packaging
2021-01-30 11:34:04 +00:00
extends:
- .libretro-osx-arm64-make-default
- .core-defs
2021-04-06 07:40:59 +00:00
2020-12-21 22:54:05 +00:00
################################### CELLULAR #################################
# Android ARMv7a
2020-10-08 17:41:43 +00:00
android-armeabi-v7a:
extends:
- .libretro-android-jni-armeabi-v7a
- .core-defs
2020-10-08 17:41:43 +00:00
2020-12-21 22:54:05 +00:00
# Android ARMv8a
2020-10-08 17:41:43 +00:00
android-arm64-v8a:
extends:
- .libretro-android-jni-arm64-v8a
- .core-defs
2020-10-08 17:41:43 +00:00
2020-12-21 22:54:05 +00:00
# Android 64-bit x86
2020-10-08 17:41:43 +00:00
android-x86_64:
extends:
- .libretro-android-jni-x86_64
- .core-defs
2021-04-06 07:40:59 +00:00
2020-12-21 22:54:05 +00:00
# Android 32-bit x86
2020-10-08 17:41:43 +00:00
android-x86:
extends:
- .libretro-android-jni-x86
- .core-defs
2020-10-08 17:41:43 +00:00
2021-03-12 03:01:48 +00:00
# iOS
libretro-build-ios-arm64:
tags:
- macosx-packaging
extends:
- .libretro-ios-arm64-make-default
- .core-defs
# iOS (armv7) [iOS 9 and up]
libretro-build-ios9:
2021-02-21 06:23:14 +00:00
tags:
- macosx-packaging
2021-01-07 21:36:23 +00:00
extends:
- .libretro-ios9-make-default
- .core-defs
2021-03-12 03:01:48 +00:00
# tvOS
libretro-build-tvos-arm64:
tags:
- macosx-packaging
extends:
- .libretro-tvos-arm64-make-default
- .core-defs
2021-01-07 21:36:23 +00:00
################################### CONSOLES #################################
2021-04-06 09:29:19 +00:00
# Nintendo 3DS
2024-11-11 20:40:30 +00:00
libretro-build-ctr-neogeo:
2024-11-11 12:28:23 +00:00
extends:
- .libretro-ctr-static-retroarch-master
2024-11-11 20:40:30 +00:00
- .core-defs-neogeo
libretro-build-ctr-cps12:
extends:
- .libretro-ctr-static-retroarch-master
- .core-defs-cps12
2021-04-06 09:29:19 +00:00
2020-12-28 21:45:35 +00:00
# Nintendo WiiU
#libretro-build-wiiu:
# extends:
# - .libretro-wiiu-static-retroarch-master
# - .core-defs
2020-12-21 22:54:05 +00:00
# Nintendo Switch
2020-10-08 17:41:43 +00:00
libretro-build-libnx-aarch64:
extends:
- .libretro-libnx-static-retroarch-master
- .core-defs
2020-10-08 17:41:43 +00:00
2020-12-21 22:54:05 +00:00
# PlayStation Vita
2020-10-08 17:41:43 +00:00
libretro-build-vita:
extends:
- .libretro-vita-static-retroarch-master
- .core-defs
2021-11-12 09:29:06 +00:00
#################################### MISC ##################################
# Emscripten
2021-11-21 08:13:07 +00:00
#libretro-build-emscripten:
# extends:
# - .libretro-emscripten-static-retroarch-master
# - .core-defs