You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 379B

1234567891011121314151617
  1. language:
  2. - c++
  3. - java
  4. # Travis is still stuck on Ubuntu 14.04, which has a too old FLTK
  5. before_install:
  6. - wget http://fltk.org/pub/fltk/1.3.4/fltk-1.3.4-2-source.tar.gz
  7. - tar -xvf fltk-1.3.4-2-source.tar.gz
  8. - pushd fltk-1.3.4-2
  9. - ./configure --prefix=/usr --enable-shared
  10. - make -j2
  11. - sudo make install
  12. - popd
  13. script:
  14. - cmake . && make
  15. - cd java && cmake . && make