summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-27 14:28:05 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-27 14:28:13 +0200
commitd29dc226ff0421971facfead82386706a4b2240f (patch)
treefb107f4feae118b5b8535fdf57070e818b2fd1c7 /.travis.yml
parent6699c7bc309461c9da2fe021e66d632ec0dfbce1 (diff)
speed up build by not installing ocdev
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index d2ecaef89..360b1c4fe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,16 +25,13 @@ matrix:
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- - sudo apt-get update
- - sudo apt-get -y install python3-setuptools
- if [[ "$DB" == 'mysql' ]]; then sudo apt-get -y install mariadb-server; fi
- - sudo easy_install3 requests ocdev
- nvm install 5.6
- npm install -g npm@latest
- make dist
# install core
- cd ../
- - ocdev setup core --dir owncloud --branch $CORE_BRANCH --no-history
+ - git clone https://github.com/owncloud/core.git --recursive --depth 1 -b $CORE_BRANCH owncloud
- mv news owncloud/apps/
before_script:
@@ -48,7 +45,7 @@ before_script:
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- ./occ app:enable news
- ./occ background:cron # enable default cron
- - ocdev server &
+ - php -S localhost:8080 &
- cd apps/news
script: