forked from nextcloud/calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
106 lines (90 loc) · 3.28 KB
/
.travis.yml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
sudo: required
dist: trusty
language: php
php:
- 7.1
- 7.2
- 7.3
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
- libxml2-utils
firefox: "latest"
branches:
only:
- master
- vue
env:
global:
- DB=mysql
- CORE_BRANCH=master
- PHP_COVERAGE=FALSE
- TEST_SUITE=TEST-PHP
matrix:
include:
- php: 7.3
env: "TEST_SUITE=PACKAGE"
- php: 7.3
env: "TEST_SUITE=LINT-PHP"
- php: 7.3
env: "TEST_SUITE=TEST-JS"
- php: 7.3
env: "CORE_BRANCH=stable17"
- php: 7.2
env: "CORE_BRANCH=stable17"
- php: 7.1
env: "CORE_BRANCH=stable17"
fast_finish: true
cache:
directories:
- "$HOME/.composer/cache/files"
- "$HOME/.npm"
before_install:
- php --info
# Setup MySQL if applicable
- 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
# set up nextcloud
- composer self-update
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then make composer-init; fi"
- cd ..
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
- mv calendar core/apps/
before_script:
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''; fi"
# Set up app
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable calendar; fi"
# Enable app twice to check occ errors of registered commands
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then php -f core/occ app:enable calendar; fi"
- cd core/apps/calendar
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm install -g npm@latest; fi"
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then make dev-setup; fi"
# XDebug is only needed if we report coverage -> speeds up other builds
- if [[ "$PHP_COVERAGE" = "FALSE" ]]; then phpenv config-rm xdebug.ini; fi
script:
# Check info.xml schema validity
- wget https://apps.nextcloud.com/schema/apps/info.xsd
- xmllint appinfo/info.xml --schema info.xsd --noout
- rm info.xsd
# Check PHP syntax errors
- sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then composer run lint; fi"
# Run server's app code checker
- sh -c "if [ '$TEST_SUITE' = 'LINT-PHP' ]; then php ../../occ app:check-code calendar; fi"
# Run JS tests
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm test --passWithNoTests; fi"
# Run JS lint
- sh -c "if [ '$TEST_SUITE' = 'TEST-JS' ]; then npm run lint; fi"
# Run PHP tests
- sh -c "if [ '$TEST_SUITE' = 'TEST-PHP' ]; then composer run test; fi"
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then wget https://scrutinizer-ci.com/ocular.phar;
fi
- if [[ "$PHP_COVERAGE" = "TRUE" ]]; then php ocular.phar code-coverage:upload --format=php-clover
tests/clover.xml; fi
# Test packaging
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make dev-setup; fi
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make build-js-production; fi
- if [[ "$TEST_SUITE" = "PACKAGE" ]]; then make appstore; fi