summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAutechre <libretro@gmail.com>2021-01-10 14:47:31 +0100
committertwinaphex <libretro@gmail.com>2021-03-12 08:42:23 +0100
commit52527aaf629181d5e595c4d13f9e5b5cb9e78ffc (patch)
tree205b1dae8ff48dda00c0f63201c2224b60ebfd56 /.gitlab-ci.yml
parent2bd5e3e0f80821d2439ddaad04281fae4fba63a1 (diff)
Update .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d6d4dd3..fe6fc84 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -25,6 +25,14 @@ 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'
+
# Stages for building
stages:
- build-prepare
@@ -53,3 +61,15 @@ 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
+ - .core-defs