Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2017-12-26 14:58:29 +0300
committerGitHub <noreply@github.com>2017-12-26 14:58:29 +0300
commit604e7e59ca16dbf87bc821280a02e4ccc7daf8a4 (patch)
tree78c381a51875b4b1cc83c6ce873b2e5d701d2315 /.travis.yml
parentab9744c649d61967d270d8ee46cabc5613991bf1 (diff)
Delete .travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml58
1 files changed, 0 insertions, 58 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 20c66f6..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-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