Created
January 12, 2017 01:57
-
-
Save NumberA/588baf4398c89d4cd64c40cd718e0ed5 to your computer and use it in GitHub Desktop.
Updated Ren'Py .travis.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Specify the language and install dependencies | |
language: python | |
python: | |
- "2.7" | |
# Install Ren'Py and navigate to the Ren'Py install directory | |
install: | |
- cd .. | |
- wget http://www.renpy.org/dl/6.99.12/renpy-6.99.12-sdk.tar.bz2 | |
- tar xf renpy-6.99.12-sdk.tar.bz2 | |
- rm renpy-6.99.12-sdk.tar.bz2 | |
- cd renpy-6.99.12-sdk | |
# Configure Ren'Py to not use ALSA to avoid ALSA dependency errors | |
env: | |
- SDL_AUDIODRIVER=dummy | |
# Run the tests | |
script: ./renpy.sh "../ProjectGaymore/" lint |
Hey I came here to said
Thank you for this info. Now I can Test&Pack a Game from Travis now.
:D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Based on this .travis.yml file by ExcaliburZero.