Sfoglia il codice sorgente

Travis CI Support.

Par Winzell 6 anni fa
parent
commit
f0eaa1efb2
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18 0
      .travis.yml

+ 18 - 0
.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