-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (33 loc) · 915 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
language: node_js
sudo: required
node_js:
- "8"
- "9"
- "14"
matrix:
include:
- os: linux
- os: linux
env:
- RESIDUE_VERSION=2.1.2 # Do not update this version until residue-cpp/releases has downloadable version. see install.sh
before_install:
- wget https://raw.githubusercontent.com/amrayn/residue-cpp/master/install.sh
- sudo sh install.sh $RESIDUE_VERSION
- export LD_LIBRARY_PATH=/usr/local/lib/
- ls -l /usr/local/lib/
- npm install residue-native@latest
- os: osx
- os: osx
env:
- RESIDUE_VERSION=2.1.2
before_install:
- wget https://raw.githubusercontent.com/amrayn/residue-cpp/master/install.sh
- sudo sh install.sh $RESIDUE_VERSION
- ls -l /usr/local/lib/
- export LD_LIBRARY_PATH=/usr/local/lib/
- npm install residue-native@latest
before_script:
- sh test/start-server.sh
cache:
directories:
- "node_modules"