My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 373 B

1234567891011121314151617181920
  1. language: c
  2. matrix:
  3. include:
  4. # Access more recent gcc and clang via a Trusty image
  5. - os: linux
  6. dist: trusty
  7. compiler: gcc
  8. - os: linux
  9. dist: trusty
  10. compiler: clang
  11. - os: osx
  12. compiler: gcc
  13. - os: osx
  14. compiler: clang
  15. script:
  16. - export CFLAGS=-Werror
  17. - make clean
  18. - make
  19. - make clean
  20. - make -f Makefile.generic