Skip to content

Commit

Permalink
Added .travis.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Barczyński committed Jan 6, 2016
1 parent 2978a1a commit 9b4a2ec
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: cpp
compiler: g++

sudo: required

before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq

install:
- sudo apt-get install -qq g++-4.8

script:
- g++-4.8 -std=c++11 -Wall -Wextra -pedantic source/AStar.cpp main.cpp -o app
- ./app

0 comments on commit 9b4a2ec

Please sign in to comment.