From 0c5791537ea7ca233a97df47b91c8335aa55ddeb Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Wed, 31 Aug 2016 02:02:30 +0200 Subject: First alpha release cf README --- .travis.yml | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..20c66f6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,58 @@ +sudo: required +dist: trusty +language: php +php: + - 5.6 + - 7 +env: + global: + - CORE_BRANCH=stable9 + matrix: + - DB=pgsql + +matrix: + allow_failures: + - env: DB=pgsql CORE_BRANCH=master + include: + - php: 5.6 + env: DB=sqlite + - php: 5.6 + env: DB=mysql + - php: 5.6 + env: DB=pgsql CORE_BRANCH=master + fast_finish: true + +before_install: + # enable a display for running JavaScript tests + - export DISPLAY=:99.0 + - sh -e /etc/init.d/xvfb start + - if [[ "$DB" == 'mysql' ]]; then sudo apt-get -y install mariadb-server; fi + - nvm install 5.9 + - npm install -g npm@latest + - make + - make appstore + # install core + - cd ../ + - git clone https://github.com/owncloud/core.git --recursive --depth 1 -b $CORE_BRANCH owncloud + - mv nextant owncloud/apps/ + +before_script: + - if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s oc_autotest; fi + - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database oc_autotest;'; fi + - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi + - if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost';"; fi + - 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='' + - ./occ app:enable nextant + - php -S localhost:8080 & + - cd apps/nextant + +script: + - make test + +after_failure: + - cat ../../data/owncloud.log + +addons: + firefox: "latest" \ No newline at end of file -- cgit v1.2.3