summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml34
1 files changed, 33 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4bcc514..faf1777 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -25,6 +25,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'
@@ -34,6 +38,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'
@@ -55,6 +63,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
@@ -84,6 +97,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:
@@ -102,7 +121,13 @@ android-x86_64:
extends:
- .libretro-android-jni-x86_64
- .core-defs
-
+
+# iOS 9
+libretro-build-ios-9:
+ extends:
+ - .libretro-ios9-make-default
+ - .core-defs
+
################################### CONSOLES #################################
# PlayStation Portable
libretro-build-psp:
@@ -127,3 +152,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