You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 843 B

123456789101112131415161718192021222324252627282930313233343536
  1. matrix:
  2. include:
  3. - name: "MacOS + Clang"
  4. os: osx
  5. osx_image: xcode10.1
  6. compiler: clang
  7. before_install:
  8. - pip3 install -r requirements.txt
  9. script:
  10. - "cd test && python3 -m nose --rednose --verbose"
  11. addons:
  12. homebrew:
  13. packages:
  14. - astyle
  15. - name: "MacOS + GCC8"
  16. os: osx
  17. osx_image: xcode10.1
  18. compiler: gcc
  19. addons:
  20. homebrew:
  21. packages:
  22. - astyle
  23. - gcc@8
  24. before_install:
  25. - pip3 install -r requirements.txt
  26. - brew link gcc
  27. - export PATH="/usr/local/bin:$PATH"
  28. - ln -s /usr/local/bin/gcc-8 /usr/local/bin/gcc
  29. - gcc --version
  30. script:
  31. - "cd test && python3 -m nose --rednose --verbose"
  32. cache: pip
  33. # vim: set ft=yaml ts=2 sw=2 tw=0 et :