From 7649a24ca28bb22e732594402680877657c09246 Mon Sep 17 00:00:00 2001 From: Autechre Date: Thu, 7 Jan 2021 22:50:28 +0100 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3264c16..0f99378 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,10 @@ include: - 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' @@ -35,6 +39,10 @@ include: - project: 'libretro-infrastructure/ci-templates' file: '/android-jni.yml' + # iOS 9 + - project: 'libretro-infrastructure/ci-templates' + file: '/ios9.yml' + ################################## CONSOLES ################################ # PlayStation Portable - project: 'libretro-infrastructure/ci-templates' @@ -72,6 +80,11 @@ include: - project: 'libretro-infrastructure/ci-templates' file: '/dingux-mips32.yml' + #################################### MISC ################################## + # Emscripten + - project: 'libretro-infrastructure/ci-templates' + file: '/emscripten-static.yml' + # Stages for building stages: - build-prepare @@ -101,6 +114,12 @@ libretro-build-linux-x64: - .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: @@ -132,6 +151,12 @@ android-x86: - .libretro-android-jni-x86 - .core-defs +# iOS 9 +libretro-build-ios-9: + extends: + - .libretro-ios9-make-default + - .core-defs + ################################### CONSOLES ################################# # PlayStation Portable libretro-build-psp: @@ -186,3 +211,10 @@ libretro-build-dingux-mips32: extends: - .libretro-dingux-mips32-make-default - .core-defs + +#################################### MISC ################################## +# Emscripten +libretro-build-emscripten: + extends: + - .libretro-emscripten-static-retroarch-master + - .core-defs