forked from googlearchive/abelana
-
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.
Initial commit for the Abelana sample project.
- Loading branch information
Antoine Gangloff
committed
Jul 10, 2015
0 parents
commit 8d45928
Showing
663 changed files
with
109,784 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.DS_STORE | ||
*xcuserdata/ | ||
*build/ | ||
*.gradle/ |
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,40 @@ | ||
sudo: false | ||
#add language, etc. here | ||
|
||
cache: | ||
directories: | ||
- $HOME/gcloud/ | ||
env: | ||
- PATH=$PATH:$HOME/gcloud/google-cloud-sdk/bin GOOGLE_APPLICATION_CREDENTIALS=$TRAVIS_BUILD_DIR/client_secrets.json #Other environment variables on same line | ||
|
||
before_install: | ||
#ENCRYPT YOUR PRIVATE KEY (If you need authentication) | ||
# 1. Install and login to the Travis CLI: | ||
# $ gem install travis | ||
# $ travis login | ||
# 2. Move your json private key to client_secrets.json | ||
# 3. Run: | ||
# $ travis encrypt-file client_secrets.json --add | ||
# 4. Commit changes: | ||
# $ git add client_secrets.json.enc | ||
# $ git commit client_secrets.json.enc .travis.yml | ||
|
||
- if [ ! -d $HOME/gcloud/google-cloud-sdk ]; then | ||
mkdir -p $HOME/gcloud && | ||
wget https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz --directory-prefix=$HOME/gcloud && | ||
cd $HOME/gcloud && | ||
tar xzf google-cloud-sdk.tar.gz && | ||
printf '\ny\n\ny\ny\n' | ./google-cloud-sdk/install.sh && | ||
cd $TRAVIS_BUILD_DIR; | ||
fi | ||
- gcloud -q components update | ||
- if [ -a client_secrets.json ]; then | ||
gcloud -q auth activate-service-account --key-file client_secrets.json; | ||
fi | ||
|
||
install: | ||
#Add app specific setup here | ||
#Use '-q' to disable interactive prompts | ||
|
||
script: | ||
#Test and/or deploy your app with gcloud commands here! |
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,6 @@ | ||
.gradle/ | ||
/local.properties | ||
/.idea/workspace.xml | ||
/.idea/libraries/ | ||
*.DS_Store | ||
/build/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.