Reference implementations of PQC
Você não pode selecionar mais de 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.
 
 
 
 

34 linhas
718 B

  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. - gcc --version
  27. script:
  28. - "cd test && python3 -m nose --rednose --verbose"
  29. cache: pip
  30. # vim: set ft=yaml ts=2 sw=2 tw=0 et :