forked from open-quantum-safe/liboqs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
83 lines (81 loc) · 1.55 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
language: c
dist: trusty
sudo: true
matrix:
include:
- os: linux
compiler: gcc
env:
- CC_OVERRIDE=gcc
- ENABLE_SIG_PICNIC=0
- USE_OPENSSL=1
- CHECK_STYLE=true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
- graphviz
before_install:
- sh .travis/install-clang-format-linux.sh
- os: linux
compiler: gcc
env:
- CC_OVERRIDE=gcc-4.9
- ENABLE_SIG_PICNIC=0
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- doxygen
- graphviz
before_install:
- sh .travis/install-clang-format-linux.sh
- os: linux
compiler: gcc
env: CC_OVERRIDE=gcc-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- doxygen
- graphviz
- os: linux
compiler: gcc
env:
- CC_OVERRIDE=gcc-6
- USE_OPENSSL=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- libssl-dev
- doxygen
- graphviz
- os: osx
compiler: clang
env:
- CC_OVERRIDE=clang
- AES_NI=0
- USE_OPENSSL=1
- OPENSSL_DIR=/usr/local/opt/openssl # openssl is a keg-only package
before_install:
- brew update
- brew install libsodium doxygen graphviz
- os: osx
compiler: clang
env:
- CC_OVERRIDE=clang
- AES_NI=0
before_install:
- brew update
- brew install doxygen graphviz
script:
- .travis/all-tests.sh