您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.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