summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-17 16:27:25 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-18 09:31:16 -0400
commitab771c8f754954ad94a1bc24d2e9819fd285c0da (patch)
treec69fbf2cfcd0102cd81046838f74c1aac32f7a68 /.travis.yml
parent151849d536a479b9952ee96fa3dccbac6a0711e7 (diff)
downloadchat-ab771c8f754954ad94a1bc24d2e9819fd285c0da.tar.gz
chat-ab771c8f754954ad94a1bc24d2e9819fd285c0da.tar.bz2
chat-ab771c8f754954ad94a1bc24d2e9819fd285c0da.zip
Adding go 1.5.1 and postgress to travis build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 877977dd4..02e1234d3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,10 @@
language: go
go:
- 1.4.2
+- 1.5.1
+env:
+- TRAVIS_DB=mysql
+- TRAVIS_DB=postgres
before_install:
- gem install compass
- sudo apt-get update -qq
@@ -24,6 +28,9 @@ before_script:
- mysql -e "CREATE DATABASE IF NOT EXISTS mattermost_test ;" -uroot
- mysql -e "CREATE USER 'mmuser'@'%' IDENTIFIED BY 'mostest' ;" -uroot
- mysql -e "GRANT ALL ON mattermost_test.* TO 'mmuser'@'%' ;" -uroot
+- psql -c "create database mattermost_test ;" -U postgres
+- psql -c "create user mmuser with password 'mostest' ;" -U postgres
+- psql -c 'grant all privileges on database "mattermost_test" to mmuser ;' -U postgres
services:
- redis-server
addons:
@@ -38,6 +45,8 @@ deploy:
on:
repo: mattermost/platform
tags: true
+ go: 1.4.2
+ condition: $TRAVIS_DB = mysql
- provider: s3
access_key_id: AKIAJCO3KJYEGWJIKDIQ
@@ -52,3 +61,5 @@ deploy:
on:
repo: mattermost/platform
branch: master
+ go: 1.4.2
+ condition: $TRAVIS_DB = mysql