0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #6883 from kevinansfield/travis-diet

Revert to old Travis infrastructure and remove client tests
This commit is contained in:
Austin Burdine 2016-05-24 07:42:13 -06:00
commit 76aa3a47fb

View file

@ -1,25 +1,17 @@
sudo: required
dist: trusty
language: node_js
# When changing node version also update it on lines 34, 36 and 46.
node_js:
- "0.10"
- "0.12"
- "4"
sudo: false
cache:
directories:
- node_modules
- core/client/node_modules
- core/client/bower_components
addons:
firefox: "latest"
postgresql: "9.3"
apt:
sources:
- google-chrome
packages:
- mysql-server
- google-chrome-stable
env:
global:
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
@ -31,15 +23,11 @@ env:
- DB=pg NODE_ENV=testing-pg
matrix:
include:
- node_js: "0.10"
env: TEST_SUITE=client
- node_js: "0.10"
env: TEST_SUITE=lint
before_install:
- if [ $DB == "mysql" ]; then mysql -u root -e 'create database ghost_testing'; fi
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi
- if [ $DB == "pg" ]; then psql -c 'create database ghost_testing;' -U postgres; fi
before_script:
- if [ $TEST_SUITE == "client" ]; then export DISPLAY=:99; sh -e /etc/init.d/xvfb start; sleep 3; fi
after_success:
- |
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then