diff options
author | twinaphex <libretro@gmail.com> | 2020-10-07 04:37:41 +0200 |
---|---|---|
committer | twinaphex <libretro@gmail.com> | 2021-03-12 08:42:23 +0100 |
commit | 157bb251956fd6406f3c7de94bebd98bc1ffb30f (patch) | |
tree | 67e531ac7ca06249b5dcba65a2a70649b1f4d471 | |
parent | 32c35ac36a7fa84165e3e687adff015a10feb95a (diff) |
Add .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
|