Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
Linux build for External Github/Travis-CI is now working, .travis.yml…
Browse files Browse the repository at this point in the history
… is good to go.
  • Loading branch information
Bryan Parsons committed Sep 26, 2018
1 parent 11e5d0e commit 4ab6b5d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
#.yml file for Github/Travis-CI support
language: c++
language: c
language: python

os:
- linux
- osx

compiler:
- gcc
- gcc-c++

addons:
Expand All @@ -19,9 +15,13 @@ addons:
- libncurses5-dev
- libncursesw5-dev
- libgtest-dev
- libgmock-dev

script:
- ./lint_test.sh
- ./build.sh -evtcu

- bash ./lint_test.sh
- mkdir build
- cd build
- export gpstk=`pwd`/install
- cmake -DPYTHON_INSTALL_PREFIX=$gpstk -DCMAKE_INSTALL_PREFIX=install -DBUILD_EXT=ON -DBUILD_PYTHON=ON -DTEST_SWITCH=ON ../
- make all -j 2
- ctest -j 2
- make install -j 2

0 comments on commit 4ab6b5d

Please sign in to comment.