From c3945f84923d23c4a654bb7762d05c7cfc37d76e Mon Sep 17 00:00:00 2001 From: Lynix Date: Mon, 12 Sep 2016 14:29:12 +0200 Subject: [PATCH] Test AppVeyor Former-commit-id: fcc4e66322c3526f452974266e9707acb279c9b4 [formerly fe0d63e8b378effbc90bc690decf41872119fab3] [formerly 180ee0a987724f139bfd5a787d9f2fbcf32e5863 [formerly 7a4fd75231de24e3c3eb4631b3ccd267d9788257]] Former-commit-id: 8365cc00d18be9e1b3f4f762a4bf845d0e39ddc4 [formerly e9a8dad2c15e3114b7df56fbab3ec2d13614a449] Former-commit-id: 69379db76e5e944c106f1a1592e39860e7ec0a81 --- appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..756c1e14b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +shallow_clone: true + +os: + - Visual Studio 2015 + +environment: + matrix: + - TOOLSET: vs2010 + - TOOLSET: vs2013 + - TOOLSET: vs2015 + +install: + - cd build && "./premake5.exe" %TOOLSET% && cd .. + +configuration: + - Debug + - Release + +build: + project: NazaraEngine/build/$(TOOLSET)/NazaraEngine.sln + +after_test: + - NazaraEngine\tests\Tests.exe