Browse Source

Reintroduce memcached

tags/v24.0.0beta1
acsfer 2 years ago
parent
commit
6f06b0f4f7
No account linked to committer's email address
1 changed files with 27 additions and 0 deletions
  1. 27
    0
      .drone.yml

+ 27
- 0
.drone.yml View File

@@ -1932,3 +1932,30 @@ trigger:
event:
- pull_request
- push

---
kind: pipeline
name: memcache-memcached

steps:
- name: submodules
image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest
commands:
- git submodule update --init
- name: memcache-memcached
image: nextcloudci/php7.3-memcached:php7.3-memcached-3
commands:
- phpenmod xdebug
- service memcached restart
- ./autotest.sh sqlite tests/lib/Memcache/MemcachedTest.php
- wget https://codecov.io/bash -O codecov.sh
- sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"
- sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi"

trigger:
branch:
- master
- stable*
event:
- pull_request
- push

Loading…
Cancel
Save