mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Revert to old Travis infrastructure and remove client tests
no issue - moves us back to the older but faster Travis infrastructure - removes the client tests and related setup as they are now handled in the Ghost-Admin repo
This commit is contained in:
parent
a1baef4ed6
commit
3afb3a657d
1 changed files with 2 additions and 14 deletions
16
.travis.yml
16
.travis.yml
|
@ -1,25 +1,17 @@
|
||||||
sudo: required
|
|
||||||
dist: trusty
|
|
||||||
language: node_js
|
language: node_js
|
||||||
# When changing node version also update it on lines 34, 36 and 46.
|
# When changing node version also update it on lines 34, 36 and 46.
|
||||||
node_js:
|
node_js:
|
||||||
- "0.10"
|
- "0.10"
|
||||||
- "0.12"
|
- "0.12"
|
||||||
- "4"
|
- "4"
|
||||||
|
sudo: false
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- node_modules
|
- node_modules
|
||||||
- core/client/node_modules
|
- core/client/node_modules
|
||||||
- core/client/bower_components
|
- core/client/bower_components
|
||||||
addons:
|
addons:
|
||||||
firefox: "latest"
|
|
||||||
postgresql: "9.3"
|
postgresql: "9.3"
|
||||||
apt:
|
|
||||||
sources:
|
|
||||||
- google-chrome
|
|
||||||
packages:
|
|
||||||
- mysql-server
|
|
||||||
- google-chrome-stable
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
|
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
|
||||||
|
@ -31,15 +23,11 @@ env:
|
||||||
- DB=pg NODE_ENV=testing-pg
|
- DB=pg NODE_ENV=testing-pg
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- node_js: "0.10"
|
|
||||||
env: TEST_SUITE=client
|
|
||||||
- node_js: "0.10"
|
- node_js: "0.10"
|
||||||
env: TEST_SUITE=lint
|
env: TEST_SUITE=lint
|
||||||
before_install:
|
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
|
- 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:
|
after_success:
|
||||||
- |
|
- |
|
||||||
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue