forked from apache/predictionio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
67 lines (55 loc) · 1.8 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##########
# 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
- develop
language: scala
addons:
postgresql: "9.3"
sudo: false
env:
global:
- PIO_HOME=`pwd`
before_script:
# Download spark, hbase
- mkdir vendors
- wget http://d3kbcqa49mib13.cloudfront.net/spark-1.3.0-bin-hadoop2.4.tgz
- tar zxfC spark-1.3.0-bin-hadoop2.4.tgz vendors
- wget http://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
# 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:
# 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: install.prediction.io
region: us-east-1
skip_cleanup: true
acl: public_read
endpoint: install.prediction.io.s3-website-us-east-1.amazonaws.com
local-dir: bin
detect_encoding: true
on:
branch: master