pqc/.travis.yml

29 lines
624 B
YAML
Raw Normal View History

matrix:
include:
2019-02-05 10:02:07 +00:00
- name: "MacOS + Clang"
os: osx
osx_image: xcode10.1
compiler: clang
before_install:
- pip3 install -r requirements.txt
2019-02-27 15:02:24 +00:00
script:
- "cd test && python3 -m nose --rednose --verbose"
2019-02-05 10:02:07 +00:00
- name: "MacOS + GCC8"
os: osx
osx_image: xcode10.1
compiler: gcc
addons:
homebrew:
packages:
- gcc@8
before_install:
- pip3 install -r requirements.txt
- gcc --version
2019-02-27 15:02:24 +00:00
script:
- "cd test && python3 -m nose --rednose --verbose"
cache: pip
2019-01-16 12:02:57 +00:00
# vim: set ft=yaml ts=2 sw=2 tw=0 et :