forked from neka-nat/python-forexconnect
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
21 lines (21 loc) · 690 Bytes
/
.travis.yml
File metadata and controls
21 lines (21 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: cpp
os:
- linux
compiler:
- gcc
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo apt-get update -qq
install:
- sudo apt-get install libboost-log-dev libboost-date-time-dev libboost-python-dev
- wget http://fxcodebase.com/bin/forexconnect/1.4.1/ForexConnectAPI-1.4.1-Linux-x86_64.tar.gz
- tar xvf ForexConnectAPI-1.4.1-Linux-x86_64.tar.gz
- mv ForexConnectAPI-1.4.1-Linux-x86_64 ForexConnectAPI
- export FOREXCONNECT_ROOT=$(pwd)/ForexConnectAPI
before_script:
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/ForexConnectAPI
script:
- mkdir build
- cd build
- cmake ..
- sudo make install