-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59ced1f
commit 55eae2c
Showing
1,817 changed files
with
373,144 additions
and
457,262 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
launcher/game/saves | ||
log.txt | ||
traceback.txt | ||
errors.txt | ||
*.rpyc | ||
*.rpyb | ||
tmp | ||
renpy-*.*.*-dists | ||
DDMMaker-*.*.*-dists | ||
DDMMaker7-*.*.*-dists | ||
DDMMaker6-*.*.*-dists | ||
renpy/*.pyo | ||
launcher/project.json | ||
rapt | ||
launcher/game/saves | ||
log.txt | ||
traceback.txt | ||
errors.txt | ||
*.rpyc | ||
*.rpyb | ||
tmp | ||
renpy-*.*.*-dists | ||
DDMMaker-*.*.*-dists | ||
DDMMaker7-*.*.*-dists | ||
DDMMaker6-*.*.*-dists | ||
*.pyo | ||
launcher/project.json | ||
rapt | ||
clean_renpy_files.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
|
||
sudo: required | ||
|
||
# Travis build script for RenPy | ||
# based on Monika-After-Story script. | ||
|
||
# This is the install stage | ||
# All your dependencies go here. We have done the RenPy SDK part done for you. | ||
|
||
install: | ||
- cd .. | ||
- wget https://www.renpy.org/dl/7.3.5/renpy-7.3.5-sdk.tar.bz2 | ||
- tar xf renpy-7.3.5-sdk.tar.bz2 | ||
- rm renpy-7.3.5-sdk.tar.bz2 | ||
- mv renpy-7.3.5-sdk renpy | ||
- mkdir ddmm | ||
|
||
# now this is where it gets interesting | ||
# we're copying over the template files into the renpy SDK | ||
# and CD into the renpy | ||
|
||
#- bash ./ddcc/travis/setup.sh | ||
- cp -vRf DDLC-ModMaker/* ddmm | ||
- rm ddmm/renpy.sh | ||
- rm -r ddmm/lib | ||
- mv renpy/renpy.sh ddmm/renpy.sh | ||
- mv renpy/lib ddmm/lib | ||
#- bash DDLC-ModMaker/travis/inject_version.sh | ||
#- bash DDLC-ModMaker/travis/patch_renpy.sh | ||
- cd ddmm | ||
env: | ||
# this is required as there was build issues without this, don't remove this. | ||
- SDL_AUDIODRIVER=dummy SDL_VIDEODRIVER=dummy | ||
|
||
# This is the script part. This is where the actual building is happening. | ||
# This produces an artifact which we'll use later on to publish a release. | ||
|
||
script: ./renpy.sh launcher distribute "../ddmm/launcher/" && cd .. | ||
|
||
|
||
# This is where the actual releases happen. Travis has the ability to publish releases from GitHub, Amazon S3, OpenShift, etc. | ||
# Read on https://docs.travis-ci.com/user/deployment/releases/ to learn more | ||
# For this type of configuration, we're using the GitHub releases schema | ||
|
||
deploy: | ||
provider: releases | ||
api_key: | ||
# DO NOT CHANGE THIS! Travis can replace this since it's a Environment Variable. | ||
# Head to Settings > Environment variables and set this. | ||
secure: $GITHUB_API_KEY | ||
file_glob: true | ||
file: "*-dists/*sdk.zip" | ||
skip_cleanup: true | ||
on: | ||
tags: true # your mods only builds and uploads releases on a GitHub Git tag so make sure you tag and release accordingly! | ||
language: python | ||
python: | ||
- "2.7" | ||
|
||
sudo: required | ||
|
||
# Travis build script for RenPy | ||
# based on Monika-After-Story script. | ||
|
||
# This is the install stage | ||
# All your dependencies go here. We have done the RenPy SDK part done for you. | ||
|
||
install: | ||
- cd .. | ||
- wget https://www.renpy.org/dl/7.3.5/renpy-7.3.5-sdk.tar.bz2 | ||
- tar xf renpy-7.3.5-sdk.tar.bz2 | ||
- rm renpy-7.3.5-sdk.tar.bz2 | ||
- mv renpy-7.3.5-sdk renpy | ||
- mkdir ddmm | ||
|
||
# now this is where it gets interesting | ||
# we're copying over the template files into the renpy SDK | ||
# and CD into the renpy | ||
|
||
#- bash ./ddcc/travis/setup.sh | ||
- cp -vRf DDLC-ModMaker/* ddmm | ||
- rm ddmm/renpy.sh | ||
- rm -r ddmm/lib | ||
- mv renpy/renpy.sh ddmm/renpy.sh | ||
- mv renpy/lib ddmm/lib | ||
#- bash DDLC-ModMaker/travis/inject_version.sh | ||
#- bash DDLC-ModMaker/travis/patch_renpy.sh | ||
- cd ddmm | ||
env: | ||
# this is required as there was build issues without this, don't remove this. | ||
- SDL_AUDIODRIVER=dummy SDL_VIDEODRIVER=dummy | ||
|
||
# This is the script part. This is where the actual building is happening. | ||
# This produces an artifact which we'll use later on to publish a release. | ||
|
||
script: ./renpy.sh launcher distribute "../ddmm/launcher/" && cd .. | ||
|
||
|
||
# This is where the actual releases happen. Travis has the ability to publish releases from GitHub, Amazon S3, OpenShift, etc. | ||
# Read on https://docs.travis-ci.com/user/deployment/releases/ to learn more | ||
# For this type of configuration, we're using the GitHub releases schema | ||
|
||
deploy: | ||
provider: releases | ||
api_key: | ||
# DO NOT CHANGE THIS! Travis can replace this since it's a Environment Variable. | ||
# Head to Settings > Environment variables and set this. | ||
secure: $GITHUB_API_KEY | ||
file_glob: true | ||
file: "*-dists/*sdk.zip" | ||
skip_cleanup: true | ||
on: | ||
tags: true # your mods only builds and uploads releases on a GitHub Git tag so make sure you tag and release accordingly! |
Oops, something went wrong.