Updated travis tests

master
Christophe Riccio ago%!(EXTRA string=9 years)
parent a3427f7027
commit b68c6054ab
  1. 28
      .travis.yml
  2. 5
      readme.md

@ -9,10 +9,28 @@ compiler:
- clang
before_script:
- mkdir ./build
- cd ./build
- cmake -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON ..
script:
- cmake --build .
- ctest
- mkdir ./build_98_pure
- cd ./build_98_pure
- cmake -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
- cmake --build_98_pure .
- ctest
- cd ..
- mkdir ./build_98_simd
- cd ./build_98_simd
- cmake -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON ..
- cmake --build_98_simd .
- ctest
- cd ..
- mkdir ./build_11_simd
- cd ./build_11_simd
- cmake -DGLM_TEST_ENABLE=ON ..
- cmake --build_11_simd .
- ctest
- cd ..

@ -47,6 +47,11 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate)
| Service | System | Compiler | Status |
| ------- | ------ | -------- | ------ |
| [Drone](https://drone.io/github.com/g-truc/glm) | Linux 64 bits | GCC 4.6.3 | [![Build Status](https://drone.io/github.com/g-truc/glm/status.png)](https://drone.io/github.com/g-truc/glm/latest) |
| ------- | ------ | -------- | ------ |
| [Travis CI]| macOS, Linux 64 bits | Clang, GCC 4.6.3 | [![Travis CI](https://travis-ci.org/g-truc/glm.svg?branch=master)](https://travis-ci.org/g-truc/glm)
## Release notes

Loading…
Cancel
Save