Skip to content

Commit e3c6b70

Browse files
committed
Travis CI: updates for security
1 parent ae5f035 commit e3c6b70

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,18 @@ branches:
3535
before_script:
3636
- export
3737
- cd OpenDDS
38-
- if [ "$DDS_SECURITY" == 1 ]; then CONFIG_OPTIONS+=" --security"; fi
38+
- if [ "$DDS_SECURITY" == 1 ]; then CONFIG_OPTIONS+="--security"; fi
3939
- ./configure --no-tests --std=c++11 $CONFIG_OPTIONS
4040
- cd ..
4141
- npm install -g node-gyp
4242
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
4445
- npm install
4546
- export V8_ROOT=~/.node-gyp/$(node-gyp list)
4647
- export NAN_ROOT=$TRAVIS_BUILD_DIR/node_modules/nan
4748
- $ACE_ROOT/bin/mwc.pl -type gnuace -exclude ACE_TAO,OpenDDS
4849
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$TRAVIS_BUILD_DIR/tools/v8stubs
4950
- make
50-
- if [ "$DDS_SECURITY" == 1 ]; then TEST_OPTIONS+=" --secure"; fi
51+
- if [ "$DDS_SECURITY" == 1 ]; then TEST_OPTIONS+="--secure"; fi
5152
- cd test; ./run_test.pl $TEST_OPTIONS

0 commit comments

Comments
 (0)