-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
40 lines (33 loc) · 901 Bytes
/
.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
# the cp for the libcrypto modules keeps us from using the containers.
sudo: required
dist: trusty
rvm:
- 2.1.5
language: c++
compiler:
- g++
cache:
- bundler
cache:
directories:
- $HOME/stuff
before_install:
- "sudo dpkg --add-architecture i386"
- "sudo apt-get update"
- "sudo apt-get remove oracle-java7-installer oracle-java8-installer oracle-java9-installer"
# the cp is because libssl-dev:i386 and libssl-dev:amd64 can not co-exist together due to package
# incompatibilities, but in fact have no problems in practice.
install:
- "./install-apt-deps.sh"
- "rvm autolibs enable"
- "rvm install ruby-2.1.5"
- "rvm use 2.1.5"
- "gem install ronn cbor cbor-diag"
- "./build-setup-travis.sh ONLYARCH=x86_64"
- "PATH=$HOME/bin:$PATH export PATH"
script:
- "cat Makefile.local"
- "make vars "
- "make programs "
- "make checkprograms "
- "make unitcheck"