X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=.gitlab-ci.yml;h=eafac9f1a294ce3f4696fe75fe7e241f8fd5ac38;hb=fe520ce58803f87a8f02866d54eb882114f6ab4e;hp=ea70ea6f92f1c421bb4a26340dc54689c522951a;hpb=3d985519636cc69dd1c2b86cab66ef88d6b20bfa;p=pcsx_rearmed.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea70ea6f..eafac9f1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ .core-defs: variables: JNI_PATH: . + MAKEFILE: Makefile.libretro CORENAME: pcsx_rearmed # Inclusion templates, required for the build to work @@ -16,19 +17,39 @@ include: # Windows 64-bit - project: 'libretro-infrastructure/ci-templates' file: '/windows-x64-mingw.yml' - + + # Windows 32-bit + - project: 'libretro-infrastructure/ci-templates' + file: '/windows-i686-mingw.yml' + # Linux 64-bit - project: 'libretro-infrastructure/ci-templates' file: '/linux-x64.yml' - + + # Linux 32-bit + - project: 'libretro-infrastructure/ci-templates' + file: '/linux-i686.yml' + # 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' + ################################## CELLULAR ################################ # Android - project: 'libretro-infrastructure/ci-templates' file: '/android-jni.yml' + + # iOS + - project: 'libretro-infrastructure/ci-templates' + file: '/ios-arm64.yml' + + # iOS (armv7) + - project: 'libretro-infrastructure/ci-templates' + file: '/ios9.yml' ################################## CONSOLES ################################ # PlayStation Portable @@ -47,6 +68,16 @@ include: - project: 'libretro-infrastructure/ci-templates' file: '/libnx-static.yml' + # tvOS (AppleTV) + - project: 'libretro-infrastructure/ci-templates' + file: '/tvos-arm64.yml' + + # OpenDingux (ARM) + - project: 'libretro-infrastructure/ci-templates' + file: '/dingux-arm32.yml' + + #################################### MISC ################################## + # Stages for building stages: - build-prepare @@ -63,17 +94,35 @@ libretro-build-windows-x64: extends: - .libretro-windows-x64-mingw-make-default - .core-defs - + +# Windows 32-bit +libretro-build-windows-i686: + extends: + - .libretro-windows-i686-mingw-make-default + - .core-defs + # Linux 64-bit libretro-build-linux-x64: extends: - .libretro-linux-x64-make-default - .core-defs + +# Linux 32-bit +libretro-build-linux-i686: + extends: + - .libretro-linux-i686-make-default + - .core-defs # MacOS 64-bit libretro-build-osx-x64: extends: - - .libretro-osx-x64-make-default + - .libretro-osx-x64-make-10-7 + - .core-defs + +# MacOS ARM 64-bit +libretro-build-osx-arm64: + extends: + - .libretro-osx-arm64-make-default - .core-defs ################################### CELLULAR ################################# @@ -100,6 +149,24 @@ 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 ################################### CONSOLES ################################# # PlayStation Vita @@ -119,3 +186,9 @@ libretro-build-libnx-aarch64: extends: - .libretro-libnx-static-retroarch-master - .core-defs + +# Miyoo +libretro-build-miyoo-arm32: + extends: + - .libretro-miyoo-arm32-make-default + - .core-defs