This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
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 #1 from HewlettPackard/master
Merge the HPE's Python SDK changes up to 9-15-16.
- Loading branch information
Showing
113 changed files
with
2,539 additions
and
1,115 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,57 +1,63 @@ | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Local Certificates | ||
*.pem | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
__pycache__ | ||
|
||
# Rope | ||
.ropeproject/ | ||
|
||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
nosetests.xml | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
#coverage | ||
coverage.xml | ||
.coverage | ||
|
||
#virtualenv | ||
env | ||
|
||
#pycharm | ||
.idea | ||
.idea/ | ||
|
||
#Global configuration to run examples | ||
examples/config.json | ||
*.py[cod] | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Local Certificates | ||
*.pem | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build/* | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
__pycache__ | ||
|
||
# Rope | ||
.ropeproject/ | ||
|
||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
nosetests.xml | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
#coverage | ||
coverage.xml | ||
.coverage | ||
|
||
#virtualenv | ||
env | ||
|
||
#pycharm | ||
.idea | ||
.idea/ | ||
|
||
#Global configuration to run examples | ||
examples/config.json | ||
|
||
#sphinx generated files | ||
docs/build/* | ||
docs/source/* | ||
!docs/source/conf.py | ||
!docs/source/index.rst |
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,7 +1,9 @@ | ||
language: python | ||
python: | ||
- 2.7 | ||
- 2.7 | ||
install: | ||
- pip install tox | ||
- pip install tox | ||
script: | ||
- tox | ||
- tox | ||
- "./deploy.sh" | ||
|
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
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,69 @@ | ||
#!/bin/bash | ||
set -e # Exit with nonzero exit code if anything fails | ||
|
||
SOURCE_BRANCH="master" | ||
TARGET_BRANCH="gh-pages" | ||
|
||
# Pull requests and commits to other branches shouldn't try to deploy, just build to verify | ||
if [ "$TRAVIS_PULL_REQUEST" != "false" -o "$TRAVIS_BRANCH" != "$SOURCE_BRANCH" ]; then | ||
echo "Skipping deploy; just doing a build." | ||
exit 0 | ||
fi | ||
|
||
# Save some useful information | ||
REPO=`git config remote.origin.url` | ||
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:} | ||
SHA=`git rev-parse --verify HEAD` | ||
|
||
# Clone the existing gh-pages for this repo into out/ | ||
# Create a new empty branch if gh-pages doesn't exist yet (should only happen on first deply) | ||
rm -rf out || exit 0 | ||
|
||
git clone $REPO out | ||
cd out | ||
git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH | ||
cd .. | ||
|
||
|
||
# Clean out existing contents | ||
rm -rf out/**/* || exit 0 | ||
|
||
# Copy generated documentation to the new directory | ||
cp -a docs/build/html/. out/ | ||
|
||
|
||
cd out | ||
git config user.name "Travis CI" | ||
git config user.email "[email protected]" | ||
|
||
# If there are no changes (e.g. this is a README update) then just bail. | ||
if [ $(git status --porcelain | wc -l) -lt 1 ]; then | ||
echo "No changes to the spec on this push; exiting." | ||
exit 0 | ||
fi | ||
|
||
# Commit the "changes", i.e. the new version. | ||
# The delta will show diffs between new and old versions. | ||
git add -A . | ||
git commit -m "Deploy to GitHub Pages: ${SHA}" | ||
|
||
|
||
## Get the deploy key by using Travis's stored variables to decrypt deploy_key.enc | ||
openssl aes-256-cbc -K $encrypted_207a3e71573a_key -iv $encrypted_207a3e71573a_iv -in deploy_key.enc -out deploy_key -d | ||
|
||
|
||
chmod 600 deploy_key | ||
|
||
eval `ssh-agent -s` | ||
|
||
ssh-add deploy_key | ||
|
||
|
||
## Now that we're all set up, we can push. | ||
git push $SSH_REPO $TARGET_BRANCH | ||
|
||
echo "Documentation pushed to gh-pages ................................" | ||
cd .. | ||
rm -rf out || exit 0 | ||
|
||
echo "Documentation deploy finished ..................................." |
Binary file not shown.
Oops, something went wrong.