mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
New list of target for Visual Studio testing
This commit is contained in:
parent
684eb11993
commit
f69d029438
@ -1,16 +1,66 @@
|
|||||||
clone_folder: c:\dev\glm-cmake
|
clone_folder: c:\dev\glm-cmake
|
||||||
|
|
||||||
os:
|
environment:
|
||||||
- Visual Studio 2013
|
matrix:
|
||||||
- Visual Studio 2015
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
- Visual Studio 2017
|
CMAKE_GENERATOR: 'Visual Studio 15 2017 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX2=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
configuration:
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
- Debug
|
CMAKE_GENERATOR: 'Visual Studio 15 2017 Win64'
|
||||||
- Release
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX2=ON'
|
||||||
|
CONFIGURATION: Debug
|
||||||
|
|
||||||
matrix:
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
fast_finish: true
|
CMAKE_GENERATOR: 'Visual Studio 15 2017 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 15 2017 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Debug
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 14 2015 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 14 2015 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON'
|
||||||
|
CONFIGURATION: Debug
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 14 2015 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 14 2015 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Debug
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 12 2013 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE2=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 12 2013 Win64'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 12 2015'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE2=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
|
||||||
|
CMAKE_GENERATOR: 'Visual Studio 12 2015'
|
||||||
|
ADDITIONAL_CMAKE_ARGS: '-DGLM_TEST_ENABLE=ON -DGLM_TEST_FORCE_PURE=ON'
|
||||||
|
CONFIGURATION: Release
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
- x64
|
- x64
|
||||||
@ -19,11 +69,13 @@ build:
|
|||||||
parallel: true
|
parallel: true
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
|
||||||
build_script:
|
before_build:
|
||||||
- cmake --version
|
- cmake --version
|
||||||
- md build
|
- md build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON ..
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER $ADDITIONAL_CMAKE_ARGS ..
|
||||||
|
|
||||||
|
build_script:
|
||||||
- cmake -E time cmake --build . --config %CONFIGURATION% -- /verbosity:minimal
|
- cmake -E time cmake --build . --config %CONFIGURATION% -- /verbosity:minimal
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
|
Loading…
Reference in New Issue
Block a user