diff options
author | twinaphex <libretro@gmail.com> | 2021-03-12 06:56:40 +0100 |
---|---|---|
committer | twinaphex <libretro@gmail.com> | 2021-03-12 08:42:23 +0100 |
commit | 4cc3b5f8df646b1cab9beadc762d4148a1bccb33 (patch) | |
tree | 8362955b183e819144d481e20dc5afbd048fd382 | |
parent | 112e6bda992b0c08d11a5645f61e326167b4868f (diff) |
Add linux 32bit to gitlab
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6d4dd3..dbe7dff 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'
+
# Stages for building
stages:
- build-prepare
@@ -53,3 +57,9 @@ 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
|