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 471B

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