Commit 8c3d1bf1612a7728569658c7f2a439da0e1b48b4
1 parent
1f2a30e2
adding online continuous build integration
Showing
1 changed file
with
17 additions
and
0 deletions
.travis.yml
0 → 100644
| 1 | +language: cpp | ||
| 2 | +compiler: gcc | ||
| 3 | +before_install: | ||
| 4 | + - sudo apt-get update -qq | ||
| 5 | + - sudo apt-get install -qq cmake qt5-default libqt5svg5-dev | ||
| 6 | + | ||
| 7 | +before_script: | ||
| 8 | + - mkdir build | ||
| 9 | + - cd build | ||
| 10 | + - cmake -DCMAKE_BUILD_TYPE=Release .. | ||
| 11 | + | ||
| 12 | +script: make | ||
| 13 | + | ||
| 14 | +#email: | ||
| 15 | +#- devs@host.org | ||
| 16 | +#on_success: change | ||
| 17 | +#on_failure: always |