diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..3c43745 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: cpp +os: linux +dist: bionic + +env: + global: + - boost_version=1.71.0 + matrix: + - build_type=debug arch=x86 + - build_type=release arch=x86 + - build_type=debug arch=x64 + - build_type=release arch=x64 + +addons: + apt: + update: true + packages: + - mingw-w64 + +before_script: + - ./.travis/build_boost.sh + +script: + - ./.travis/build.sh |