libretro-atari800/.gitlab-ci.yml

245 lines
5.8 KiB
YAML
Raw Permalink Normal View History

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