X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=.gitlab-ci.yml;h=d3706fcb7738dc97b2fb6013b2510bf7b27e4569;hb=54686ee7ccbba7220aaf69892ad3d77515478776;hp=ea70ea6f92f1c421bb4a26340dc54689c522951a;hpb=3d985519636cc69dd1c2b86cab66ef88d6b20bfa;p=pcsx_rearmed.git diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea70ea6f..d3706fcb 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,11 +17,19 @@ 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' @@ -63,12 +72,24 @@ 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: