From 4ae3eb0dc970dd11a4404d169f1ef0dffd6ed6cc Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 19 Aug 2018 02:13:00 +0200 Subject: [PATCH] Added Clang SSE3 tests --- .appveyor.yml | 42 ++++++++++++------------------------------ 1 file changed, 12 insertions(+), 30 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index eaa773e6..c2d7ac5a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,34 +1,16 @@ clone_folder: c:\dev\glm-cmake -image: -- Visual Studio 2013 -- Visual Studio 2015 -- Visual Studio 2017 -configuration: -- Release -platform: -- x64 - -init: -- set arch= -- if "%arch%"=="Win64" ( set arch= Win64) -- echo %arch% -- echo %APPVEYOR_BUILD_WORKER_IMAGE% -- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" ( set generator="Visual Studio 15 2017%arch%" ) -- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" ( set generator="Visual Studio 14 2015%arch%" ) -- if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2013" ( set generator="Visual Studio 12 2013%arch%" ) -- echo %generator% - -before_build: -- cmd: |- - mkdir build - cd build - cmake --version - cmake .. -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -G %generator% +os: + - Visual Studio 2013 + - Visual Studio 2013 + - Visual Studio 2017 -build: - cmake --build . - -after_build: - - ctest +platform: + - x86_64 +build_script: +- cmake --version +- md build +- cd build +- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON .. +- cmake -E time cmake --build .