Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis CI #28

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove gflags
  • Loading branch information
henrique committed Apr 29, 2015
commit 4c4eab3b8a3ddcf1e9189f55c918e0aeda9bc3a3
12 changes: 1 addition & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ before_install:
install:
- mkdir thirdparty && cd thirdparty

# install gflags
- curl https://gflags.googlecode.com/files/gflags-2.0-no-svn-files.tar.gz | tar xvz
- cd gflags-2.0
- ./configure --prefix=/usr/local
- make -j$NUM_CPU
- sudo make install
- cd ..

# install glog
- curl https://google-glog.googlecode.com/files/glog-0.3.3.tar.gz | tar xvz
- cd glog-0.3.3
Expand All @@ -26,11 +18,9 @@ install:

# install ceres
- curl http://ceres-solver.org/ceres-solver-1.9.0.tar.gz | tar xvz
- mkdir ceres-bin
- cd ceres-bin
- mkdir ceres-bin && cd ceres-bin
- cmake ../ceres-solver-1.9.0
- make -j$NUM_CPU
# - make test
- sudo make install
- cd ..

Expand Down