5 Commits
1.3.1 ... glowy

Author SHA1 Message Date
e3fd3a084e Further tweaks to materials, mk3 cockpit prototype 2020-04-25 08:06:55 -07:00
00b4c5ada5 Soften emissives 2020-04-24 08:55:21 -07:00
2f76430ec9 Material tweaks 2020-04-24 08:02:38 -07:00
8807a536fc More lights 2020-04-23 20:59:56 -07:00
a930b09165 Glowy test 2020-04-23 15:33:23 -07:00
595 changed files with 8726 additions and 15959 deletions

View File

@ -1,45 +0,0 @@
name: Package Checks
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the prod branch
on:
pull_request:
branches: [ prod ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-package:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checkout this repo
- uses: actions/checkout@v2
# Checkout another repo
- uses: actions/checkout@v2
with:
# Repository name with owner.
repository: 'post-kerbin-mining-corporation/build-deploy'
# branch
ref: 'actions'
path: 'build-deploy'
- uses: actions/setup-python@v2
with:
python-version: '3.8'
architecture: 'x64'
- name: Installing dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest awscli boto3 requests
#- name: Running deploy tests
# run: pytest -s --testpath "GameData/" build-deploy/src/tests/ # run the deploy tests
- name: Building Restock package
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
- name: Building Restock+ package
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"

View File

@ -1,49 +0,0 @@
name: Package and Deploy
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the prod branch
on:
push:
branches: [ prod ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
deploy-package:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
OAUTH_TOKEN: ${{ secrets.OAUTH_TOKEN }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checkout this repo
- uses: actions/checkout@v2
# Checkout another repo
- uses: actions/checkout@v2
with:
# Repository name with owner.
repository: 'post-kerbin-mining-corporation/build-deploy'
# branch
ref: 'actions'
path: 'build-deploy'
- uses: actions/setup-python@v2
with:
python-version: '3.8'
architecture: 'x64'
- name: Installing dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest awscli boto3 requests
- name: Building Restock
run: python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml"
- name: Building RestockPlus
run: python build-deploy/src/package.py --f "Distribution/RestockPlus/.mod_data.yml"
- name: Staging package
run: python build-deploy/src/stage.py --f "Distribution/Restock/.mod_data.yml" # Run the staging script
- name: Deploying Restock
run: python build-deploy/src/deploy.py --f "Distribution/Restock/.mod_data.yml" # Deploy package to spacedock, curse, github
- name: Deploying RestockPlus
run: python build-deploy/src/deploy.py --f "Distribution/RestockPlus/.mod_data.yml" # Deploy package to spacedock, curse, github

6
.gitignore vendored
View File

@ -7,9 +7,3 @@ build-deploy/
bin/
obj/
*.swp
**/@thumbs
Distribution/Restock/GameData/ReStock/Spaces/**/*.png
Distribution/Restock/GameData/ReStock/Props/**/*.png
Distribution/RestockPlus/GameData/ReStockPlus/Props/**/*.png
Distribution/RestockPlus/GameData/ReStockPlus/Spaces/**/*.png

3
.gitmodules vendored
View File

@ -0,0 +1,3 @@
[submodule "Assets/CineboxAndrew"]
path = Assets/CineboxAndrew
url = https://github.com/drewcassidy/ReStocked-Assets.git

51
.travis.yml Normal file
View File

@ -0,0 +1,51 @@
language: python
python:
- 3.6
install:
- pip install awscli boto3 requests
branches:
only:
- prod
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 "Distribution/" build-deploy/src/tests/ # run the deploy tests
- python build-deploy/src/package.py --f "Distribution/Restock/.mod_data.yml" # Build RS package
- python build-deploy/src/package.py --f "Distribution/RestockPlus/.mod_data.yml" # Build RS+ package
before_deploy:
- python build-deploy/src/stage.py --f "Distribution/Restock/.mod_data.yml" # Run the staging script. Note that tags will come off restock base always
deploy:
- provider: script
script: python build-deploy/src/deploy.py --f "Distribution/Restock/.mod_data.yml" # Deploy RS package to spacedock, curse, github
skip_cleanup: true
on:
branch: prod
- provider: script
script: python build-deploy/src/deploy.py --f "Distribution/RestockPlus/.mod_data.yml" # Deploy RS+ package to spacedock, curse, github
skip_cleanup: true
on:
branch: prod
- 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/ReStock
skip_cleanup: true
acl: public_read
region: us-east-2
upload-dir: restock
on:
branch: prod
- 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/ReStockPlus
skip_cleanup: true
acl: public_read
region: us-east-2
upload-dir: restockplus
on:
branch: prod

1
Assets/CineboxAndrew Submodule

Submodule Assets/CineboxAndrew added at 45d8f3f43b

View File

@ -13,7 +13,7 @@ package:
- RestockRigidLegs
dependencies: # Configure dependencies
ModuleManager:
version: 4.1.4
version: 4.1.3
location: s3
deploy:
SpaceDock:

Some files were not shown because too many files have changed in this diff Show More