Skip to content

Instantly share code, notes, and snippets.

@NumberA
Created January 12, 2017 01:57
Show Gist options
  • Save NumberA/588baf4398c89d4cd64c40cd718e0ed5 to your computer and use it in GitHub Desktop.
Save NumberA/588baf4398c89d4cd64c40cd718e0ed5 to your computer and use it in GitHub Desktop.
Updated Ren'Py .travis.yml
# 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
@NumberA
Copy link
Author

NumberA commented Jan 12, 2017

Based on this .travis.yml file by ExcaliburZero.

@karorogunso
Copy link

karorogunso commented Jan 24, 2017

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