Skip to content

Commit

Permalink
Merge pull request #74 from GraphIt-DSL/ajaybr
Browse files Browse the repository at this point in the history
Added basic testing with travis-cs. Runs c++ test and python tests (w…
  • Loading branch information
yunmingzhang17 authored Sep 6, 2018
2 parents bfa0264 + 62c1fab commit 563e01d
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 563e01d

Please sign in to comment.