pqc/.travis.yml

41 lines
923 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-04-16 13:17:18 +01:00
env:
PQCLEAN_ONLY_DIFF: 1
2019-02-28 14:04:03 +00:00
addons:
homebrew:
packages:
- astyle
2019-02-05 10:02:07 +00:00
- name: "MacOS + GCC8"
os: osx
osx_image: xcode10.1
compiler: gcc
addons:
homebrew:
packages:
2019-02-28 14:04:03 +00:00
- astyle
- gcc@8
2019-04-16 13:17:18 +01:00
env:
PQCLEAN_ONLY_DIFF: 1
before_install:
- pip3 install -r requirements.txt
- brew link gcc
2019-04-05 08:28:22 +01:00
- export PATH="/usr/local/bin:$PATH"
- ln -s /usr/local/bin/gcc-8 /usr/local/bin/gcc
- 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 :