Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3573 from oxtopus/issue-3572-fixup-s3-deployment
Browse files Browse the repository at this point in the history
Add support for artifacts deployed to S3 named according to sha
  • Loading branch information
oxtopus authored Apr 28, 2017
2 parents 967847f + 7c65928 commit f3cce28
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,13 @@ test_script:
# Python integration tests
- py.test tests\integration

after_build:
- 7z a nupic-$(APPVEYOR_REPO_COMMIT).zip .\dist\nupic-*.whl

artifacts:
- path: 'dist\*.whl' # Find all wheel files in project root only (non-recusive)
- path: nupic-$(APPVEYOR_REPO_COMMIT).zip
name: appveyor

deploy:
# Amazon S3 deployment provider settings
Expand All @@ -117,3 +122,14 @@ deploy:
folder: "numenta/nupic/$(APPVEYOR_REPO_COMMIT)"
on:
branch: master
- provider: S3
access_key_id: AKIAIGHYSEHV3WFKOWNQ
secret_access_key:
secure: /8wO17Gir0XAiecJkHeE3jxOJzvyl0+uWcl7BKCuN0FC795golsL8905VmNuRl1o
bucket: "artifacts.numenta.org"
region: us-west-2
set_public: true
artifact: appveyor
folder: "numenta/nupic/appveyor"
on:
branch: master

0 comments on commit f3cce28

Please sign in to comment.