.travis.yml 277 B

1234567891011121314151617181920212223
  1. language: c
  2. os:
  3. - linux
  4. - osx
  5. matrix:
  6. allow_failures:
  7. - os: osx
  8. #addons:
  9. # apt:
  10. # packages:
  11. # - atalk
  12. compiler:
  13. - clang
  14. - gcc
  15. script:
  16. - mkdir build
  17. - cd build
  18. - cmake -DBUILD_ATALK=OFF -DCMAKE_BUILD_TYPE=Release ..
  19. - cmake --build .
  20. - cd ..