-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from ChrisAdderley/dev
Dev
- Loading branch information
Showing
57 changed files
with
4,597 additions
and
1,613 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
mod-name: Waterfall | ||
package: | ||
include-dependencies: true # Include dependencies in the package | ||
included-gamedata: | ||
- Waterfall | ||
included-support: # Include these root-level files in packages | ||
- readme.txt | ||
- changelog.txt | ||
dependencies: # Configure dependencies | ||
ModuleManager: | ||
version: 4.1.4 | ||
location: s3 | ||
deploy: | ||
SpaceDock: | ||
enabled: false # activate/deactivate this deployment script | ||
mod-id: 558 # The Spacedock mod ID for deployment | ||
CurseForge: | ||
enabled: false # activate/deactivate this deployment script | ||
mod-id: 220671 # The CurseForge mod ID for deployment | ||
GitHub: | ||
enabled: true # activate/deactivate this deployment script |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
language: python | ||
python: | ||
- 3.6 | ||
install: | ||
- pip install awscli boto3 requests | ||
branches: | ||
only: | ||
- master | ||
script: | ||
- git clone https://github.com/post-kerbin-mining-corporation/build-deploy.git # clone this repo, it contains the stuff that does the heavy lifting | ||
- cd build-deploy | ||
- git checkout master | ||
- cd .. | ||
- pytest -s --testpath "GameData/" build-deploy/src/tests/ # run the deploy tests | ||
- python build-deploy/src/package.py --f ".mod_data.yml" # Build package | ||
before_deploy: | ||
- python build-deploy/src/stage.py --f ".mod_data.yml" # Run the staging script | ||
deploy: | ||
- provider: script | ||
script: python build-deploy/src/deploy.py --f ".mod_data.yml" # Deploy package to spacedock, curse, github | ||
skip_cleanup: true | ||
on: | ||
branch: master | ||
- provider: s3 # releases to S3 | ||
access_key_id: $AWS_ACCESS_KEY_ID | ||
secret_access_key: $AWS_SECRET_ACCESS_KEY | ||
bucket: "nertea-ksp-modding-releases" | ||
local_dir: deploy/Waterfall | ||
skip_cleanup: true | ||
acl: public_read | ||
region: us-east-2 | ||
upload-dir: waterfall | ||
on: | ||
branch: master |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.