Reference implementations of PQC
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.
 
 
 
 

34 rivejä
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 :