22 lines
399 B
YAML
22 lines
399 B
YAML
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
|
|
|
|
notifications:
|
|
webhooks: https://code.facebook.com/travis/webhook/
|