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

.travis.yml - github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 397dd663518ff35f6d11afc113ebc022eac6916c (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
sudo: false
dist: trusty
language: php
php:
    - 7.1
    - 7.2
    - 7.3

addons:
    mariadb: '10.1'
    postgresql: '9.6'

services:
    - postgresql
    - mariadb

env:
    global:
        - CORE_BRANCH=master
    matrix:
        - DB=pgsql

matrix:
    include:
        - php: 7.2
          env: DB=sqlite
        - php: 7.2
          env: DB=mysql
        - php: 7.2
          env: DB=pgsql
    fast_finish: true

branches:
    only:
        - master
        - "/^stable\\d+(\\.\\d+)?$/"
        - /^v\d++(\.\d+)?+(\.\d+)?+(\.\d+)?$/

cache:
    directories:
        - "$HOME/.composer/cache/files"
        - "$HOME/.npm"

before_install:
    - make
    # install core
    - cd ../
    - git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH nextcloud
    - mv "$TRAVIS_BUILD_DIR" nextcloud/apps/privacy

before_script:
    # Set up the database
    - 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

    # Install server and enable the app
    - cd nextcloud
    - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
    - ./occ app:enable privacy

    - cd apps/privacy

script:
    # Lint php
    - composer run lint

    - echo "No tests at the moment"
    # - make test