-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
40 lines (39 loc) · 1.5 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
matrix:
include:
- os: linux
language: c
env:
- WITH_CRYPTO=MBEDTLS
WITH_SYSTEM_DEPENDENCIES=OFF
ENABLE_TESTING=ON
addons:
apt:
packages:
- valgrind
- lcov
- libssl-dev
script:
- ./scripts/ci/build.sh
- os: linux
language: c
env:
- WITH_CRYPTO=OPENSSL
WITH_SYSTEM_DEPENDENCIES=ON
ENABLE_TESTING=ON
addons:
apt:
packages:
- valgrind
- lcov
- libssl-dev
script:
- ./scripts/ci/build.sh
- os: windows
language: c
env:
- WITH_CRYPTO=OPENSSL
WITH_SYSTEM_DEPENDENCIES=ON
GENERATOR="Visual Studio 15 2017 Win64"
script:
- choco install openssl
- ./scripts/ci/build.sh