Skip to content

Commit

Permalink
restore correct travis yml after it was overwritten from livedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
EmergentOrder committed Dec 30, 2015
1 parent 4d6a77f commit a376936
Showing 1 changed file with 46 additions and 21 deletions.
67 changes: 46 additions & 21 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,56 @@
##########
# This is .travis.yml configuration file specifically for master and develop branch.
# The travis job should contains only unit and integration tests.
#
# To avoid this file from being overwritten by .travis.yml from other branches,
# please add the following to your local git config:
# git config merge.ours.driver true
##########

branches:
only:
- master
- livedoc
- develop

language: scala

addons:
postgresql: "9.3"

sudo: false

env:
global:
- PIO_HOME=`pwd`

language: ruby
rvm:
- 2.2.0
before_script:
# Download spark, hbase
- mkdir vendors
- wget http:https://d3kbcqa49mib13.cloudfront.net/spark-1.3.0-bin-hadoop2.4.tgz
- tar zxfC spark-1.3.0-bin-hadoop2.4.tgz vendors
- wget http:https://archive.apache.org/dist/hbase/hbase-1.0.0/hbase-1.0.0-bin.tar.gz
- tar zxfC hbase-1.0.0-bin.tar.gz vendors

gemfile: docs/manual/Gemfile
# Prepare pio environment variables
- set -a
- source conf/pio-env.sh.travis
- set +a

# Create postgres database for PredictionIO
- psql -c 'create database predictionio;' -U postgres
- ./bin/travis/pio-start-travis

script:
- cd docs/manual
- bundle exec middleman build
# Run stylecheck
- sbt scalastyle

# Run all unit tests
- sbt test

after_script:
- ./bin/travis/pio-stop-travis

deploy:
- provider: s3
access_key_id:
secure: "PxUW6LxwsJ2UlakxsPtkgIwbE949QyJbDF31IdjDIVX5H7KLWA0xkpECj+DXW7/lODsuGLxi02w4Y+KE0Ujo27ovnQAu2F1D6NDGn+D/JIu/wqjRJ4OOOg65j/06zyj5jzWMckLh6wYKABMiInsWiXtr4ehLS6pHVyJVXaLuBPE="
secret_access_key:
secure: "L3TXxQJZutXrXROf89dTiMuvcnsQ88F+cSqpddhafy4O3agyTMyJcHozizCaKI+VuJVZnUrip/joo4b85PSC8xjU4G7/lOIAoiSyQZU/f4RqUTFyl9ppTHQq2CyZKZy1qhqmBegRcWTy6TLV3JNXzKq+0fgl6/HekUMBuNX98yM="
bucket: docs.prediction.io
region: us-east-1
skip_cleanup: true
endpoint: docs.prediction.io.s3-website-us-east-1.amazonaws.com
local-dir: build
detect_encoding: true
on:
branch: livedoc
- provider: s3
access_key_id:
secure: "PxUW6LxwsJ2UlakxsPtkgIwbE949QyJbDF31IdjDIVX5H7KLWA0xkpECj+DXW7/lODsuGLxi02w4Y+KE0Ujo27ovnQAu2F1D6NDGn+D/JIu/wqjRJ4OOOg65j/06zyj5jzWMckLh6wYKABMiInsWiXtr4ehLS6pHVyJVXaLuBPE="
Expand All @@ -36,7 +61,7 @@ deploy:
skip_cleanup: true
acl: public_read
endpoint: install.prediction.io.s3-website-us-east-1.amazonaws.com
local-dir: ../../bin
local-dir: bin
detect_encoding: true
on:
branch: master

0 comments on commit a376936

Please sign in to comment.