-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move
neon-cli
files into cli
subdirectory, and restore temporaril…
…y-moved `neon` files back to project root.
- Loading branch information
Showing
133 changed files
with
642 additions
and
642 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,4 +1,10 @@ | ||
target | ||
Cargo.lock | ||
**/*~ | ||
**/node_modules | ||
**/.DS_Store | ||
/node_modules/ | ||
/dist/ | ||
**/build | ||
**/index.node | ||
**/artifacts.json | ||
**/package-lock.json | ||
npm-debug.log |
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,4 +1,52 @@ | ||
language: node_js | ||
node_js: | ||
- '4' | ||
- '5' | ||
language: rust | ||
dist: trusty | ||
|
||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
|
||
env: | ||
matrix: | ||
- TRAVIS_NODE_VERSION="8" | ||
- TRAVIS_NODE_VERSION="6" | ||
- TRAVIS_NODE_VERSION="4" | ||
global: | ||
- secure: mO6uooJGRkDISBZbTq0zvjOfjQ6BeclkxVZN3XWaXrZ/4KjPi7/fRzkm9c8brPe7LWnD4bQ9Bhp7/I6+SVRlvw+uGXNhBiiIyl95jp9s9mOEN+8V7TyShIHEYjbVJf/EGiv5Rz7ni9cNG6iBHcxy5ehycodPtVdAn/VKw31Og/JNWFTu6OzaDZL6gsFIk7VEnHUHgGtl4/iPPdPgAN18oxWbf0CjaknFxXaQiwJXuevd+fuZU16HygBn2Kmj7gqbAKyG8T6wJ1LAQpTkIduXAcgW/PJnj+Stzu48GRVoWoqMQ9Ksk2oSX70fxksC3U3SH4tIQW1+68fXZz4Y0I6b7LkwxovRxkcE4rgoU15xxJuMjxXlQ/csupwhpnBdHhh+Fmjsr0n5KFFLCI7m04ZqAn7+xx9g2NhyuPmO7/ETW24XV9fRy7IywcqR8UgLmftI36r0nV5iO500t4o13DJ0hBTIUgX6KVenbr7v68WO+M/XSRU81RPGjQKsAFM60EpCtn36uCLAZbKyxQi1kYk6UFJLfb/bfrvSS6dzUQ7fEcNRekLMn8Fo4CKAmYCJ70tvhyx/EN0HrIpCfIYedMTLYf11ZQ/bKWcHE4GzU77cRgNwBYLsY6tFjchFukyK14F6jWgpqF81g0yzG0pRJRxZqrtwEI63Db/eLidGctmcEyQ= | ||
|
||
before_install: | ||
- source $HOME/.nvm/nvm.sh | ||
- nvm install ${TRAVIS_NODE_VERSION} | ||
- nvm use ${TRAVIS_NODE_VERSION} | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 | ||
|
||
script: | | ||
cd tests/ && | ||
npm test && | ||
if [[ "$TRAVIS_RUST_VERSION" == nightly* ]]; then | ||
cd ../compile_tests/ && | ||
cargo test | ||
fi | ||
jobs: | ||
include: | ||
- stage: docs | ||
before_install: skip | ||
before_script: | ||
- export PATH=$HOME/.local/bin:$PATH | ||
- pip install ghp-import --user $(whoami) | ||
script: | | ||
if [[ $TRAVIS_BRANCH=master && $TRAVIS_PULL_REQUEST=false && $TRAVIS_COMMIT_MESSAGE =~ %travis:docs ]]; then | ||
echo "Generating API docs..." && | ||
cargo doc && | ||
echo "<meta http-equiv=refresh content=0;url=neon/index.html>" > target/doc/index.html && | ||
echo "Deploying API docs..." && | ||
ghp-import -n target/doc && | ||
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages | ||
fi |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
**/*~ | ||
**/.DS_Store | ||
/node_modules/ | ||
/dist/ |
File renamed without changes.
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,4 @@ | ||
language: node_js | ||
node_js: | ||
- '4' | ||
- '5' |
Oops, something went wrong.