Trying to fix appveyor script

master
Christophe Riccio ago%!(EXTRA string=7 years)
parent 7b161b0346
commit 520020056c
  1. 137
      .appveyor.yml

@ -1,81 +1,82 @@
clone_folder: c:\dev\glm-cmake clone_folder: c:\dev\glm-cmake
matrix: environment:
os: Visual Studio 2013 matrix:
- platform: x86 os: Visual Studio 2013
configuration: Release - platform: x86
build_script: configuration: Release
- md build32_pure_98_release build_script:
- cd build32_pure_98_release - md build32_pure_98_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON .. - cd build32_pure_98_release
- cmake -E time cmake --build . --config Release - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Release
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_pure_98_release - md build64_pure_98_release
- cd build64_pure_98_release - cd build64_pure_98_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_pure_ms_release - md build64_pure_ms_release
- cd build64_pure_ms_release - cd build64_pure_ms_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_FORCE_PURE=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
os: Visual Studio 2015 os: Visual Studio 2015
- platform: x64 - platform: x64
configuration: Debug configuration: Debug
build_script: build_script:
- md build_pure_11_debug - md build_pure_11_debug
- cd build_pure_11_debug - cd build_pure_11_debug
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Debug - cmake -E time cmake --build . --config Debug
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_pure_11_release - md build64_pure_11_release
- cd build64_pure_11_release - cd build64_pure_11_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_sse3_11_release - md build64_sse3_11_release
- cd build64_sse3_11_release - cd build64_sse3_11_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
os: Visual Studio 2017 os: Visual Studio 2017
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_pure_14_release - md build64_pure_14_release
- cd build64_pure_14_release - cd build64_pure_14_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_FORCE_PURE=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_sse3_14_release - md build64_sse3_14_release
- cd build64_sse3_14_release - cd build64_sse3_14_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
os: Visual Studio 2017 os: Visual Studio 2017
- platform: x64 - platform: x64
configuration: Release configuration: Release
build_script: build_script:
- md build64_avx_14_release - md build64_avx_14_release
- cd build64_avx_14_release - cd build64_avx_14_release
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON .. - cmake -DCMAKE_CXX_COMPILER=$COMPILER -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_14=ON -DGLM_TEST_ENABLE_LANG_EXTENSIONS=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
- cmake -E time cmake --build . --config Release - cmake -E time cmake --build . --config Release
after_build: after_build:
- cd .. - cd ..

Loading…
Cancel
Save