rustation/.travis.yml
Lionel Flandrin f3f2aff7c8 First GTE implementation: RTPT, NCLIP, AVSZ3 and NCDS
We can now display the PlayStation logo.

Mostly ported directly from mednafen's code since no doc out there
seems to be completely accurate.

Added a test infrastructure to compare the GTE results with the
original console.
2015-10-05 19:41:26 +02:00

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