Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

52 linhas
1.5 KiB

  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. before_script:
  10. - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
  11. - git fetch --unshallow
  12. - git checkout $TRAVIS_BRANCH
  13. - git reset --hard $TRAVIS_COMMIT
  14. script:
  15. # Use travis-wait to allow slower tests to run
  16. - "cd test && travis_wait 60 python3 -m nose --rednose --verbose"
  17. env:
  18. PQCLEAN_ONLY_DIFF: 1
  19. addons:
  20. homebrew:
  21. packages:
  22. - astyle
  23. - name: "MacOS + GCC8"
  24. os: osx
  25. osx_image: xcode10.1
  26. compiler: gcc
  27. addons:
  28. homebrew:
  29. packages:
  30. - astyle
  31. - gcc@8
  32. env:
  33. PQCLEAN_ONLY_DIFF: 1
  34. before_install:
  35. - git config --replace-all remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
  36. - git fetch --unshallow
  37. - git checkout $TRAVIS_BRANCH
  38. - git reset --hard $TRAVIS_COMMIT
  39. - pip3 install -r requirements.txt
  40. - brew link gcc
  41. - export PATH="/usr/local/bin:$PATH"
  42. - ln -s /usr/local/bin/gcc-8 /usr/local/bin/gcc
  43. - gcc --version
  44. script:
  45. # Use travis-wait to allow slower tests to run
  46. - "cd test && travis_wait 60 python3 -m nose --rednose --verbose"
  47. cache: pip
  48. # vim: set ft=yaml ts=2 sw=2 tw=0 et :