Skip to content

Commit

Permalink
travis: try to install into /usr for gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Oct 24, 2017
1 parent ccfc768 commit c6538e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ install:

script:
- if [[ "${BUILD_TARGET}" = "gcc_build" ]]; then
make INSTALL_PREFIX=.;
make INSTALL_PREFIX=/usr;
make install;
make docs;
make run_unit_tests;
(cd example/takeoff_land && mkdir build && cd build && cmake .. && make);
(cd example/fly_mission && mkdir build && cd build && cmake .. && make);
(cd example/offboard_velocity && mkdir build && cd build && cmake .. && make);
make clean;
make INSTALL_PREFIX=. BUILD_TYPE=Release;
make INSTALL_PREFIX=/usr BUILD_TYPE=Release;
make install;
make run_unit_tests;
fi
Expand Down

0 comments on commit c6538e7

Please sign in to comment.