blob: 4f1030a3ccb2cc687fc2452de159fd0f35f4a6ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
sudo: false
dist: trusty
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- CORE_BRANCH=stable14
- MOZ_HEADLESS=1
matrix:
- DB=pgsql
matrix:
allow_failures:
- env: DB=pgsql CORE_BRANCH=master
- php: nightly
include:
- php: 7.1
env: DB=sqlite
- php: 7.2
env: DB=sqlite
- php: 7.1
env: DB=mysql
- php: 7.2
env: DB=mysql
- php: 7.2
env: DB=pgsql CORE_BRANCH=master
- php: 7.3
env: DB=sqlite
- php: 7.3
env: DB=mysql
- php: 7.3
env: DB=pgsql CORE_BRANCH=master
fast_finish: true
before_install:
- make
# install core
- cd ../
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud
- mv news nextcloud/apps/
before_script:
- if [[ "$DB" == 'pgsql' ]]; then psql -c "CREATE ROLE oc_autotest LOGIN PASSWORD 'oc_autotest'" -U postgres; fi
- if [[ "$DB" == 'pgsql' ]]; then psql -c "CREATE DATABASE oc_autotest OWNER oc_autotest;" -U postgres; 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 'oc_autotest';"; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"; fi
# fill nextcloud with default configs and enable news
- 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="oc_autotest"
- ./occ app:enable news
- ./occ app:check-code news
- ./occ background:cron # enable default cron
- php -S localhost:8080 &
- cd apps/news
script:
- make test
after_failure:
- cat ../../data/nextcloud.log
addons:
firefox: "latest-beta"
postgresql: "9.6"
mariadb: "10.3"
|