Skip to content

Commit

Permalink
Showing 3 changed files with 19 additions and 16 deletions.
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -23,17 +23,17 @@ deploy:
repo: KSP-RO/TestFlight
tags: true
all_branches: true
notifications:
irc:
channels:
- irc.esper.net#RO
skip_join: true
use_notice: true
on_success: change
on_failure: change
template:
- 'Build #%{build_number} - %{branch} - %{result}'
- "%{commit_message}"
# notifications:
# irc:
# channels:
# - irc.esper.net#RO
# skip_join: true
# use_notice: true
# on_success: change
# on_failure: change
# template:
# - 'Build #%{build_number} - %{branch} - %{result}'
# - "%{commit_message}"
after_success:
- make deploy
env:
4 changes: 2 additions & 2 deletions makeMeta.py
Original file line number Diff line number Diff line change
@@ -38,8 +38,8 @@ def error(self, message):
"KSP_VERSION" :
{
"MAJOR" : 1,
"MINOR" : 2,
"PATCH" : 2
"MINOR" : 3,
"PATCH" : 1
}
}
with open("TestFlight.version", "w") as f:
9 changes: 6 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
@@ -71,9 +71,12 @@ deploy:
else
ifeq ($(TRAVIS_SECURE_ENV_VARS),true)
deploy:
@curl --ftp-create-dirs -T ${ZIP_CORE} -u ${FTP_USER}:${FTP_PASSWD} ftp://stantonspacebarn.com/webapps/buildtracker/builds/TestFlight/build_$(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER)/$(ZIP_CORE)
@curl --ftp-create-dirs -T ${ZIP_STOCK} -u ${FTP_USER}:${FTP_PASSWD} ftp://stantonspacebarn.com/webapps/buildtracker/builds/TestFlight/build_$(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER)/$(ZIP_STOCK)
python buildServer.py all --project-id 0 --project-name TestFlight --build-name $(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER) --changelog changes.md --files $(ZIP_CORE) $(ZIP_STOCK) $(ZIP_RO)
cp ${ZIP_CORE} GameData/TestFlight/Built/$(ZIP_CORE)
cp ${ZIP_STOCK} GameData/TestFlight/Built/$(ZIP_STOCK)
cp ${ZIP_RO} GameData/TestFlight/Built/$(ZIP_RO)
#@curl --ftp-create-dirs -T ${ZIP_CORE} -u ${FTP_USER}:${FTP_PASSWD} ftp://stantonspacebarn.com/webapps/buildtracker/builds/TestFlight/build_$(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER)/$(ZIP_CORE)
#@curl --ftp-create-dirs -T ${ZIP_STOCK} -u ${FTP_USER}:${FTP_PASSWD} ftp://stantonspacebarn.com/webapps/buildtracker/builds/TestFlight/build_$(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER)/$(ZIP_STOCK)
#python buildServer.py all --project-id 0 --project-name TestFlight --build-name $(TRAVIS_BRANCH)_$(TRAVIS_BUILD_NUMBER) --changelog changes.md --files $(ZIP_CORE) $(ZIP_STOCK) $(ZIP_RO)
else
deploy:
echo No secure environment available. Skipping deploy.

0 comments on commit cd2c2c6

Please sign in to comment.