mirror of
https://github.com/simias/rustation.git
synced 2025-04-02 10:52:36 -04:00
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.
20 lines
351 B
YAML
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
|