From 1fdffd6ef9604403cc21c692ca5cfb89d638fa28 Mon Sep 17 00:00:00 2001 From: Bret Curtis <> Date: Wed, 27 Jun 2018 13:57:51 +0200 Subject: [PATCH] see if we can get win10 going --- .gitlab-ci.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d815c7d77..ec3a9696c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,4 +43,21 @@ MacOS: - cd build; make -j2 package artifacts: paths: - - build/OpenMW-*.dmg \ No newline at end of file + - build/OpenMW-*.dmg + +Win10: + tags: + - win10 + - msvc2017 + stage: build + allow_failure: true + script: + - rm -fr build/* # remove anything in the build directory + - CI/before_script.msvc.sh -c Release -p x64 -v 2017 -V + - msbuild MSVC2017_64\OpenMW.sln /t:Build /p:Configuration=Release /m:2 + cache: + paths: + - C:\projects\openmw\deps\* + artifacts: + paths: + - */OpenMW*.exe