From f0eaa1efb26ae6a794e86d126e37662a296b6564 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Tue, 7 May 2019 14:59:30 -0700 Subject: [PATCH] Travis CI Support. --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0961fed --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +os: linux + +dist: xenial + +language: python +python: "3.7" + +compiler: + - gcc + +install: + - pip install conan + - conan user + - conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan + +script: + - conan install . -i build -s build_type=Release -s compiler.libcxx=libstdc++11 + - conan build . -bf build