diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-10-29 01:16:46 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-01-26 14:54:23 +0100 |
commit | 8e02014b559dd310dd42cc3f5cf1e4097342d459 (patch) | |
tree | b7aa2320136a43e914e541032f5cd32eeb90a805 /.drone.yml | |
parent | fceb781058516e7bd534719957a3d8354517b333 (diff) | |
download | nextcloud-server-8e02014b559dd310dd42cc3f5cf1e4097342d459.tar.gz nextcloud-server-8e02014b559dd310dd42cc3f5cf1e4097342d459.zip |
chore(tests): Migrate object storage unit tests from drone to GitHub Actions
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/.drone.yml b/.drone.yml index 06564ee90c7..4cc000c6283 100644 --- a/.drone.yml +++ b/.drone.yml @@ -218,81 +218,6 @@ trigger: --- kind: pipeline -name: object-store-s3 - -steps: -- name: minio - image: ghcr.io/nextcloud/continuous-integration-minio:latest - detach: true - commands: - - mkdir /s3data - - minio server /s3data - environment: - MINIO_ROOT_USER: nextcloud - MINIO_ROOT_PASSWORD: nextcloud -- name: submodules - image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest - commands: - - git submodule update --init -- name: object-store - image: ghcr.io/nextcloud/continuous-integration-php8.0:latest - environment: - OBJECT_STORE: s3 - CODECOV_TOKEN: - from_secret: CODECOV_TOKEN - commands: - - phpenmod xdebug - - ./tests/drone-wait-objectstore.sh - - TEST_SELECTION=PRIMARY-s3 ./autotest.sh sqlite - - wget https://codecov.io/bash -O codecov.sh - - bash codecov.sh -C $DRONE_COMMIT -f tests/autotest-clover-sqlite.xml - -trigger: - branch: - - master - - stable* - event: - - pull_request - - push - ---- -kind: pipeline -name: object-store-azure - -steps: -- name: submodules - image: ghcr.io/nextcloud/continuous-integration-alpine-git:latest - commands: - - git submodule update --init -- name: object-store - image: ghcr.io/nextcloud/continuous-integration-php8.0:latest - environment: - OBJECT_STORE: azure - CODECOV_TOKEN: - from_secret: CODECOV_TOKEN - commands: - - phpenmod xdebug - - ./tests/drone-wait-objectstore.sh - - TEST_SELECTION=PRIMARY-azure ./autotest.sh sqlite - - wget https://codecov.io/bash -O codecov.sh - - bash codecov.sh -C $DRONE_COMMIT -f tests/autotest-clover-sqlite.xml - -services: -- name: azurite - image: ghcr.io/nextcloud/continuous-integration-azurite:latest - environment: - executable: blob - -trigger: - branch: - - master - - stable* - event: - - pull_request - - push - ---- -kind: pipeline name: memcache-memcached steps: |