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

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-06-18 15:14:17 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-06-18 15:14:17 +0300
commit0d4208bd4934d83654fc3893867b2557546b404a (patch)
treeb6db2416bb0da30e119fdf8ff2120dea7d086481 /.travis.yml
parent7a756a94ab887209f7ad7ffc6a01e2d16d01bfd4 (diff)
Add Nextcloud application
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml58
1 files changed, 58 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..1810b46
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,58 @@
+sudo: required
+dist: trusty
+language: php
+php:
+ - 5.6
+ - 7
+env:
+ global:
+ - CORE_BRANCH=stable12
+ 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 6
+ - npm install -g npm@latest
+ - make
+ - make appstore
+ # install core
+ - cd ../
+ - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud
+ - mv ransomware_detection nextcloud/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 nextcloud
+ - 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 ransomware_detection
+ - php -S localhost:8080 &
+ - cd apps/ransomware_detection
+
+script:
+ - make test
+
+after_failure:
+ - cat ../../data/nextcloud.log
+
+addons:
+ firefox: "latest"