File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,17 +35,18 @@ branches:
35
35
before_script :
36
36
- export
37
37
- cd OpenDDS
38
- - if [ "$DDS_SECURITY" == 1 ]; then CONFIG_OPTIONS+=" --security"; fi
38
+ - if [ "$DDS_SECURITY" == 1 ]; then CONFIG_OPTIONS+="--security"; fi
39
39
- ./configure --no-tests --std=c++11 $CONFIG_OPTIONS
40
40
- cd ..
41
41
- npm install -g node-gyp
42
42
script :
43
- - make -C OpenDDS -sj6 DCPSInfoRepo_Main
43
+ - if [ "$DDS_SECURITY" == 1 ]; then BUILD_TARGETS+="OpenDDS_Security"; fi
44
+ - make -C OpenDDS -sj6 DCPSInfoRepo_Main OpenDDS_Rtps_Udp $BUILD_TARGETS
44
45
- npm install
45
46
- export V8_ROOT=~/.node-gyp/$(node-gyp list)
46
47
- export NAN_ROOT=$TRAVIS_BUILD_DIR/node_modules/nan
47
48
- $ACE_ROOT/bin/mwc.pl -type gnuace -exclude ACE_TAO,OpenDDS
48
49
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$TRAVIS_BUILD_DIR/tools/v8stubs
49
50
- make
50
- - if [ "$DDS_SECURITY" == 1 ]; then TEST_OPTIONS+=" --secure"; fi
51
+ - if [ "$DDS_SECURITY" == 1 ]; then TEST_OPTIONS+="--secure"; fi
51
52
- cd test; ./run_test.pl $TEST_OPTIONS
You can’t perform that action at this time.
0 commit comments