pqc/.travis.yml
Thom Wiggers 07ca665f0b
Don't run Valgrind on OSX
It's poorly supported and reports false positives (See also #10)
2019-01-23 12:36:35 +01:00

60 lines
1.0 KiB
YAML

language: c
dist: xenial
matrix:
include:
- os: linux
compiler: gcc
env:
- MAKETARGET="test-all tidy-all check-format"
addons:
apt:
packages:
- valgrind
- python3
- python3-setuptools
- python3-pip
- os: linux
compiler: clang
env:
- MAKETARGET=test-all
addons:
apt:
packages:
- valgrind
- python3
- python3-setuptools
- python3-pip
- os: osx
osx_image: xcode10.1
compiler: clang
env:
- MAKETARGET=test-all
addons:
homebrew:
packages:
- python
- os: osx
osx_image: xcode10.1
compiler: gcc
addons:
homebrew:
packages:
- gcc@8
- python
env:
- MAKETARGET=test-all
before_install:
- python3 --version
- pip3 install -r requirements.txt
script:
- make ${MAKETARGET}
cache: pip
# vim: set ft=yaml ts=2 sw=2 tw=0 et :