From 157bb251956fd6406f3c7de94bebd98bc1ffb30f Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 7 Oct 2020 04:37:41 +0200 Subject: Add .gitlab-ci.yml --- .gitlab-ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitlab-ci.yml 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 -- cgit v1.2.3