diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..bf1c658 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,31 @@ +.core-defs:
+ variables:
+ CORENAME: blastem
+
+include:
+ - template: Jobs/Code-Quality.gitlab-ci.yml
+ - project: 'libretro-infrastructure/ci-templates'
+ file: '/linux-x64.yml'
+ - project: 'libretro-infrastructure/ci-templates'
+ file: '/windows-x64-mingw.yml'
+
+stages:
+ - build-prepare
+ - build-shared
+ - build-static
+ - test
+
+#Desktop
+libretro-build-linux-x64:
+ extends:
+ - .core-defs
+ - .libretro-linux-x64-make-default
+ variables:
+ MAKEFILE: Makefile.libretro
+
+libretro-build-windows-x64:
+ extends:
+ - .core-defs
+ - .libretro-windows-x64-mingw-make-default
+ variables:
+ MAKEFILE: Makefile.libretro
|