Skip to content

Commit

Permalink
Added basic testing with travis-cs. Runs c++ test and python tests (w…
Browse files Browse the repository at this point in the history
…ith and without schedules)
  • Loading branch information
AjayBrahmakshatriya committed Sep 6, 2018
1 parent bfa0264 commit 62c1fab
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
os:
- linux

language: generic

install:
- wget https://cmake.org/files/v3.12/cmake-3.12.1-Linux-x86_64.tar.gz -O cmake.tar.gz
- tar xvf cmake.tar.gz
- mv cmake-3.12.1-Linux-x86_64 cmake
script:
- mkdir build
- cd build
- ../cmake/bin/cmake ..
- make
- cd bin
- ./graphit_test
- cd ../../test/python
- python test.py
- python test_with_schedules.py



0 comments on commit 62c1fab

Please sign in to comment.