forked from SmingHub/Sming
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '855933d10fe88fee52399930f80fa0362c2180a5' into develop
* commit '855933d10fe88fee52399930f80fa0362c2180a5': Added WifiStation.connect() to Basic_rboot sample (SmingHub#1215) Appvoyer CI will use the updated choco packages. (SmingHub#1210) Added dynamic recalculation of image offsets to prever rom overlapping. (SmingHub#1208) Added Gitter Notifications. (SmingHub#1205) Better Arduino compatability: Changed to order of the Wire.begin and Wire.pins parameters to (SmingHub#1193) Small fixes before the final 3.3.0 (SmingHub#1203) Preparation for the final 3.3.0 release. (SmingHub#1202) Added example demonstrating Js and CSS combining ... (SmingHub#1200) Fixed WebSocket sample HTML page (SmingHub#1201) Feature/auto deployment on release (SmingHub#1198)
- Loading branch information
Showing
53 changed files
with
465 additions
and
861 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
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,29 @@ | ||
#!/bin/bash | ||
set -e # exit with nonzero exit code if anything fails | ||
|
||
TAG=$1 | ||
if [ -z $TAG ]; then | ||
echo "Usage:\n\t$0 <tag>\n"; | ||
exit 1; | ||
fi | ||
|
||
|
||
# Get information about the release | ||
# TODO: ... | ||
|
||
# Update documentation | ||
cd $SMING_HOME | ||
make docs | ||
cd .. | ||
|
||
git fetch origin gh-pages:gh-pages | ||
git checkout gh-pages | ||
|
||
DOCS_DIR=$SMING_HOME/../api | ||
|
||
rm -rf $DOCS_DIR | ||
cp -r $SMING_HOME/../docs/api/sming/ $DOCS_DIR | ||
git add -A $DOCS_DIR | ||
git commit -m "Updated the API docs to version $TAG." || 1 | ||
|
||
git push https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages |
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
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
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
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
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
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
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
Oops, something went wrong.