File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,42 @@ node_js:
4
4
- " 6"
5
5
- " 8"
6
6
- " node"
7
+ addons :
8
+ apt :
9
+ sources :
10
+ - boost-latest
11
+ packages :
12
+ # for SWObjects
13
+ - libboost-all-dev
14
+ - uuid-dev
15
+ before_script :
16
+ - | # Build SWObjects for spec tests
17
+ if [ ! -e swobjects/bin/sparql ]; then
18
+ rm -rf swobjects
19
+ git clone https://github.com/ericprud/SWObjects.git swobjects
20
+ pushd swobjects
21
+ git checkout 1739b95536d2b7bf516f5543a6cf7e5c46a9a4f9
22
+ sed -i 's/^SQL_CLIENTS=.*/SQL_CLIENTS= MYSQL /' CONFIG
23
+ sed -i 's/^CRYPTLIB=.*/LDFLAGS += -lltdl -ldl/' CONFIG
24
+ make -j2 bin/sparql
25
+ popd
26
+ fi
27
+ - PATH=$PATH:swobjects/bin
28
+ - sparql -v
7
29
script :
8
30
- npm run lint
9
31
- npm test
32
+ - npm run spec
10
33
- npm run browser
11
34
- npm run docs
12
35
after_success :
13
36
- npm run coveralls
14
37
- ./.travis_build_pages
15
38
cache :
39
+ apt : true
16
40
directories :
17
41
- node_modules
42
+ - swobjects
43
+ - spec/turtle
44
+ - spec/trig
18
45
sudo : false
You can’t perform that action at this time.
0 commit comments