summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-26 14:51:43 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-26 14:51:43 +0100
commitb9e9dfb55ca34529d2e7e2775b38780c08db401c (patch)
tree6cf2a4a619aca405a8f787755394657b4d64a0d6 /.travis.yml
parent01104074e3e5539a2cbdbd43e0dfd8cb6eca92d3 (diff)
make travis yml easier
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index d33afe5e2..2386e7e05 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,14 +32,12 @@ before_install:
- sudo apt-get update
- sudo apt-get -y install python3-setuptools firefox mariadb-server
- sudo easy_install3 requests ocdev
- - nvm install 5.6
+ - nvm install unstable
- npm install -g npm@latest
# install php modules
- wget https://scrutinizer-ci.com/ocular.phar
- # install node modules
- - cd js
- - npm -g install gulp-cli protractor
- - npm install --deps
+ # install deps and compile js
+ - make
# install core
- cd ../../
- ocdev setup core --dir owncloud --branch $CORE_BRANCH --no-history
@@ -54,9 +52,6 @@ before_script:
- cd owncloud
- mkdir data
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- - cd apps/news
- - make
- - cd ../../
- ./occ app:enable news
- ./occ background:cron # enable default cron
- ocdev server &