rustation/.travis.yml

20 lines
351 B
YAML

language: rust
os:
- linux
env:
global:
- LD_LIBRARY_PATH: /usr/local/lib
install:
- wget http://www.libsdl.org/release/SDL2-2.0.3.tar.gz
- tar -zxvf SDL2-2.0.3.tar.gz
- cd SDL2-2.0.3
- ./configure
- make
- sudo make install
- cd -
before_script:
- rustc -V
- cargo -V
script:
- cargo build -v
- cargo test