forked from opentrv/OTRadioLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (47 loc) · 1.11 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
dist: trusty
sudo: required
group: edge
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: COMPILER=g++-4.9
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-5.0
packages:
- clang-5.0
env: COMPILER=clang++-5.0
before_install:
- wget https://github.com/google/googletest/archive/release-1.7.0.tar.gz
- tar xf release-1.7.0.tar.gz
- cd googletest-release-1.7.0
- cd make
- make
- sudo cp -a gtest_main.a /usr/lib/libgtest_main.a
- sudo cp -a gtest_main.a /usr/lib/libgtest.a
- cd ..
- sudo cp -a include/gtest /usr/include
- cd "${TRAVIS_BUILD_DIR}"
- wget https://github.com/opentrv/OTAESGCM/archive/master.zip
- unzip master.zip
script: ./PortableUnitTestsDriver.sh
notifications:
email:
recipients:
- ci@opentrv.uk
on_success: change
on_failure: always
irc:
channels: "irc.z.je#opentrv"
on_success: change
on_failure: change