From 3c1c7cb624ff9b6ce9b3d3be1321988ff8b6275f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 21 Jul 2018 20:36:30 +0200 Subject: [PATCH] Setup linux CI build. --- .appveyor.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 4d48b36c..c89b45e9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,9 +3,12 @@ platform: - x64 image: - Visual Studio 2017 + - Ubuntu build_script: - - cd "%APPVEYOR_BUILD_FOLDER%" - - msbuild .\update\build\win32\update.vcxproj - - msbuild .\standalone\build\win32\Tracy.vcxproj - - msbuild .\capture\build\win32\capture.vcxproj + - cmd: msbuild .\update\build\win32\update.vcxproj + - cmd: msbuild .\standalone\build\win32\Tracy.vcxproj + - cmd: msbuild .\capture\build\win32\capture.vcxproj + - sh: make -C update/build/unix debug release + - sh: make -C standalone/build/unix debug release + - sh: make -C capture/build/unix debug release test: off