summaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: 79f6d8262be031860955b35b0478ecf54d58d42e (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
build:
  jsunit:
    image: nextcloudci/jsunit:1.0.6
    commands:
      - ./autotest-js.sh
  sqlite:
    image: nextcloudci/php5.6:1.0.6
    commands:
      - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
      - git submodule update --init
      - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database sqlite --database-pass=''
      - ./autotest.sh sqlite
  mysql:
    image: nextcloudci/php5.6:1.0.6
    commands:
      - sleep 15 # gives the database enough time to initialize
      - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
      - git submodule update --init
      - ./autotest.sh mysql
  postgres:
    image: nextcloudci/php5.6:1.0.6
    commands:
      - sleep 10 # gives the database enough time to initialize
      - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
      - git submodule update --init
      - ./autotest.sh pgsql
  integration:
    image: nextcloudci/php5.6:1.0.6
    commands:
      - rm -rf data/* config/config.php # TODO: remove this - temporary fix for CI issues
      - git submodule update --init
      - ./occ maintenance:install --admin-pass=admin
      - cd build/integration
      - ./run.sh

compose:
  cache:
    image: redis
  postgres:
    image: postgres
    environment:
      - POSTGRES_USER=oc_autotest
      - POSTGRES_PASSWORD=oc_autotest
  mysql:
    image: mysql
    environment:
      - MYSQL_ROOT_PASSWORD=owncloud
      - MYSQL_USER=oc_autotest
      - MYSQL_PASSWORD=owncloud
      - MYSQL_DATABASE=oc_autotest