Commit e4d41f8a by Evgeny Safronov

Using Travis as CI.

parent d7501445
os:
- linux
env:
- SUITE=tests BUILD_TYPE=Debug
- SUITE=tests BUILD_TYPE=Release
- SUITE=examples BUILD_TYPE=Debug
- SUITE=examples BUILD_TYPE=Release
language:
- cpp
before_script:
- mkdir build && cd build
script:
- cmake .. -DBUILD_TYPE=${BUILD_TYPE}
- make
- if [ "$SUITE" = "tests" ]; then ./test/re_test; fi
- if [ "$SUITE" = "examples"]; then ./test/benchmark_test; fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment