forked from AnimaGUS-minerva/unstrung
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
42 lines (34 loc) · 787 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
41
42
# 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/travis/deps
env:
global:
- PATH=$HOME/bin:$PATH
before_install:
- sudo dpkg --add-architecture i386
- sudo apt-get update
# 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
script:
- cat Makefile.local
- make vars
- make programs
- make checkprograms
- make unitcheck