mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-29 23:41:05 -06:00
Some checks are pending
citra-build / source (push) Waiting to run
citra-build / linux (appimage) (push) Waiting to run
citra-build / linux (appimage-wayland) (push) Waiting to run
citra-build / linux (fresh) (push) Waiting to run
citra-build / macos (arm64) (push) Waiting to run
citra-build / macos (x86_64) (push) Waiting to run
citra-build / macos-universal (push) Blocked by required conditions
citra-build / windows (msvc) (push) Waiting to run
citra-build / windows (msys2) (push) Waiting to run
citra-build / android (googleplay) (push) Waiting to run
citra-build / android (vanilla) (push) Waiting to run
citra-build / docker (push) Waiting to run
citra-format / clang-format (push) Waiting to run
citra-libretro / android (push) Waiting to run
citra-libretro / linux (push) Waiting to run
citra-libretro / windows (push) Waiting to run
citra-libretro / macos (arm64) (push) Waiting to run
citra-libretro / macos (x86_64) (push) Waiting to run
citra-libretro / ios (push) Waiting to run
citra-libretro / tvos (push) Waiting to run
citra-transifex / transifex (push) Waiting to run
* libretro core * Bringing citra libretro implementation over * libretro: hook up vulkan renderer * libretro: github actions * libretro: gyro * libretro: core options v2 * libretro: on ios turn off shader jit if unavailable * moltenvk 1.3.0 introduces 8-bit indexes but allocates 16-bit for metal; this ends up allocating stream buffer * 2 = 132MiB. Instead, just use 16-bit indexes. (This will be necessary for standalone when bumping moltenvk version.) * libretro core: address review feedback * libretro: microphone support * cmake: Add ENABLE_ROOM_STANDALONE to list of incompatible libretro flags * libretro: proper initial geometry * libretro: fix software renderer * libretro: address review feedback * .github/libretro.yml: Pin macOS runners at macOS 26 * ci: Remove explicit selection of Xcode 16.0 * .github/libretro.yml: remove unnecessary windows builder apt commands * .github/libretro.yml: bump min macos version to 11.0 * ci: Re-enable CI jobs for all libretro cores This is under the condition that we don't introduce build cache for these builds --------- Co-authored-by: OpenSauce04 <opensauce04@gmail.com> Co-authored-by: PabloMK7 <hackyglitch2@gmail.com>
128 lines
3.6 KiB
YAML
128 lines
3.6 KiB
YAML
.core-defs:
|
|
variables:
|
|
JNI_PATH: .
|
|
CORENAME: azahar
|
|
API_LEVEL: 21
|
|
BASE_CORE_ARGS: -DENABLE_LIBRETRO=ON -DENABLE_TESTS=OFF
|
|
CORE_ARGS: ${BASE_CORE_ARGS}
|
|
EXTRA_PATH: bin/Release
|
|
|
|
variables:
|
|
STATIC_RETROARCH_BRANCH: master
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
# Inclusion templates, required for the build to work
|
|
include:
|
|
################################## DESKTOPS ############################## ##
|
|
# Windows 64-bit
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/windows-cmake-mingw.yml'
|
|
|
|
# Linux 64-bit
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/linux-cmake.yml'
|
|
|
|
# MacOS x86_64
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/osx-cmake-x86.yml'
|
|
|
|
# MacOS ARM64
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/osx-cmake-arm64.yml'
|
|
|
|
################################## CELLULAR ############################## ##
|
|
# Android
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/android-cmake.yml'
|
|
|
|
# iOS
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/ios-cmake.yml'
|
|
|
|
# tvOS
|
|
- project: 'libretro-infrastructure/ci-templates'
|
|
file: '/tvos-cmake.yml'
|
|
|
|
################################## CONSOLES ############################## ##
|
|
|
|
# Stages for building
|
|
stages:
|
|
- build-prepare
|
|
- build-shared
|
|
- build-static
|
|
|
|
##############################################################################
|
|
#################################### STAGES ##################################
|
|
##############################################################################
|
|
#
|
|
################################### DESKTOPS #################################
|
|
# Windows 64-bit
|
|
libretro-build-windows-x64:
|
|
extends:
|
|
- .core-defs
|
|
- .libretro-windows-cmake-x86_64
|
|
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-mxe-win-cross-cores:mingw12
|
|
variables:
|
|
CORE_ARGS: ${BASE_CORE_ARGS} -DENABLE_LTO=OFF -G Ninja
|
|
|
|
# Linux 64-bit
|
|
libretro-build-linux-x64:
|
|
extends:
|
|
- .core-defs
|
|
- .libretro-linux-cmake-x86_64
|
|
image: $CI_SERVER_HOST:5050/libretro-infrastructure/libretro-build-amd64-ubuntu:backports
|
|
variables:
|
|
CORE_ARGS: ${BASE_CORE_ARGS} -DENABLE_LTO=OFF
|
|
CC: /usr/bin/gcc-12
|
|
CXX: /usr/bin/g++-12
|
|
|
|
# MacOS x86_64
|
|
libretro-build-osx-x64:
|
|
tags:
|
|
- mac-apple-silicon
|
|
variables:
|
|
CORE_ARGS: ${BASE_CORE_ARGS} -DCMAKE_OSX_ARCHITECTURES=x86_64
|
|
MACOSX_DEPLOYMENT_TARGET: "10.15"
|
|
extends:
|
|
- .core-defs
|
|
- .libretro-osx-cmake-x86_64
|
|
|
|
# MacOS ARM64
|
|
libretro-build-osx-arm64:
|
|
extends:
|
|
- .core-defs
|
|
- .libretro-osx-cmake-arm64
|
|
|
|
################################### CELLULAR #################################
|
|
# Android ARMv8a
|
|
android-arm64-v8a:
|
|
extends:
|
|
- .libretro-android-cmake-arm64-v8a
|
|
- .core-defs
|
|
variables:
|
|
ANDROID_NDK_VERSION: 26.2.11394342
|
|
NDK_ROOT: /android-sdk-linux/ndk/$ANDROID_NDK_VERSION
|
|
|
|
# iOS arm64
|
|
libretro-build-ios-arm64:
|
|
extends:
|
|
- .libretro-ios-cmake-arm64
|
|
- .core-defs
|
|
variables:
|
|
CORE_ARGS: ${BASE_CORE_ARGS} -DCITRA_USE_PRECOMPILED_HEADERS=OFF -DCMAKE_SYSTEM_NAME=iOS -DCMAKE_OSX_ARCHITECTURES=arm64 -DENABLE_OPT=OFF
|
|
IOS_MINVER: "14.0"
|
|
EXTRA_PATH: bin/RelWithDebInfo
|
|
|
|
# tvOS arm64
|
|
libretro-build-tvos-arm64:
|
|
extends:
|
|
- .libretro-tvos-cmake-arm64
|
|
- .core-defs
|
|
variables:
|
|
CORE_ARGS: ${BASE_CORE_ARGS} -DCITRA_USE_PRECOMPILED_HEADERS=OFF -DIOS=ON -DCMAKE_SYSTEM_NAME=tvOS -DCMAKE_OSX_SYSROOT=appletvos -DCMAKE_OSX_ARCHITECTURES=arm64 -DENABLE_OPT=OFF
|
|
MINVER: "14.0"
|
|
EXTRA_PATH: bin/RelWithDebInfo
|
|
|
|
################################### CONSOLES #################################
|
|
|