Browse Source

Added .travis.yml for FreeBSD build

Paul-Louis Ageneau 3 years ago
parent
commit
5c12b25717
1 changed files with 8 additions and 0 deletions
  1. 8 0
      .travis.yml

+ 8 - 0
.travis.yml

@@ -0,0 +1,8 @@
+name: Build and test on FreeBSD
+os: freebsd
+language: cpp
+script:
+- sudo sysctl net.inet6.ip6.v6only=0
+- cmake -B build
+- cd build && make -j2 && ./tests
+