diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-02-12 09:08:23 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-02-12 09:08:23 +0100 |
commit | e4a6bccbe2ffadc5137c6cc5528c8c2d892d3e58 (patch) | |
tree | 8d62cf70b0de088de7383ce4b715ea4fb593b554 /.travis.yml | |
parent | ebc8e00e4bd5345ae6a2f175a190eab541778225 (diff) | |
download | ATCD-e4a6bccbe2ffadc5137c6cc5528c8c2d892d3e58.tar.gz |
Use environment settings to trigger more build configurations
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index a3bc186b09e..b7703237899 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,10 @@ language: cpp compiler: - gcc - - clang env: + - CORBAE_MICRO="1" + - CORBAE_COMPACT="1" + - ACEFORTAO="1" global: - ACE_ROOT=$TRAVIS_BUILD_DIR/ACE - TAO_ROOT=$TRAVIS_BUILD_DIR/TAO @@ -19,6 +21,12 @@ before_script: - export - echo -e "#include \"ace/config-linux.h\"" >> $ACE_ROOT/ace/config.h - echo -e "workspace {\n\$(TAO_ROOT)/TAO_ACE.mwc\n\$(CIAO_ROOT)/CIAO_TAO_DAnCE.mwc\n\$(TAO_ROOT)/tests/Hello\n}\n" >> $TRAVIS_BUILD_DIR/travis.mwc + - if [ "$CORBAEMICRO" == "1" ]; then echo -e "corba_e_micro=1" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU; fi + - if [ "$CORBAEMICRO" == "1" ]; then echo -e "corba_e_micro=1" >> $ACE_ROOT/bin/MakeProjectCreator/config/default.features; fi + - if [ "$CORBAECOMPACT" == "1" ]; then echo -e "corba_e_compact=1" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU; fi + - if [ "$CORBAECOMPACT" == "1" ]; then echo -e "corba_e_compact=1" >> $ACE_ROOT/bin/MakeProjectCreator/config/default.features; fi + - if [ "$ACEFORTAO" == "1" ]; then echo -e "ace_for_tao=1" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU; fi + - if [ "$ACEFORTAO" == "1" ]; then echo -e "ace_for_tao=1" >> $ACE_ROOT/bin/MakeProjectCreator/config/default.features; fi - echo -e "xerces3=1\nssl=1\n" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU - echo -e "xerces3=1\nssl=1\n" >> $ACE_ROOT/bin/MakeProjectCreator/config/default.features - echo -e "TAO/tests/Hello/run_test.pl" >> $TAO_ROOT/bin/travis-ci.lst |