Explorar el Código

Add Travis CI configuration

tags/v1.8.90
Pierre Ossman hace 6 años
padre
commit
ae7c2002d0
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. 17
    0
      .travis.yml

+ 17
- 0
.travis.yml Ver fichero

@@ -0,0 +1,17 @@
language:
- c++
- java

# Travis is still stuck on Ubuntu 14.04, which has a too old FLTK
before_install:
- wget http://fltk.org/pub/fltk/1.3.4/fltk-1.3.4-2-source.tar.gz
- tar -xvf fltk-1.3.4-2-source.tar.gz
- pushd fltk-1.3.4-2
- ./configure --prefix=/usr --enable-shared
- make -j2
- sudo make install
- popd

script:
- cmake . && make
- cd java && cmake . && make

Cargando…
Cancelar
Guardar