2023-07-13 11:55:50 +03:00
|
|
|
---
|
2019-04-15 01:54:27 +03:00
|
|
|
kind: pipeline
|
2021-12-07 16:06:17 +03:00
|
|
|
type: docker
|
2019-04-15 01:54:27 +03:00
|
|
|
name: generic
|
|
|
|
|
2024-03-17 16:12:32 +03:00
|
|
|
# SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2019-04-15 01:54:27 +03:00
|
|
|
steps:
|
2021-12-07 16:06:17 +03:00
|
|
|
- name: generic
|
2023-04-17 11:13:48 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-android8:3
|
2021-12-07 16:06:17 +03:00
|
|
|
commands:
|
|
|
|
- ./gradlew --console=plain assembleGeneric
|
2019-04-15 01:54:27 +03:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2022-06-24 15:19:46 +03:00
|
|
|
- stable-*
|
2019-04-15 01:54:27 +03:00
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-12-07 16:06:17 +03:00
|
|
|
type: docker
|
2019-04-15 01:54:27 +03:00
|
|
|
name: gplay
|
|
|
|
|
|
|
|
steps:
|
2021-12-07 16:06:17 +03:00
|
|
|
- name: gplay
|
2023-04-17 11:13:48 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-android8:3
|
2021-12-07 16:06:17 +03:00
|
|
|
commands:
|
|
|
|
- ./gradlew --console=plain assembleGplay
|
2019-04-15 01:54:27 +03:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2022-06-24 15:19:46 +03:00
|
|
|
- stable-*
|
2019-04-15 01:54:27 +03:00
|
|
|
event:
|
2021-12-07 16:06:17 +03:00
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tests
|
|
|
|
|
|
|
|
steps:
|
2021-12-08 14:47:51 +03:00
|
|
|
- name: all
|
2023-04-17 11:13:48 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-android8:3
|
2021-12-07 16:06:17 +03:00
|
|
|
privileged: true
|
|
|
|
commands:
|
2022-05-19 11:38:06 +03:00
|
|
|
- emulator -avd android -no-snapshot -gpu swiftshader_indirect -no-window -no-audio -skin 500x833 &
|
2021-12-07 16:06:17 +03:00
|
|
|
- scripts/wait_for_emulator.sh
|
2021-12-08 14:47:51 +03:00
|
|
|
- ./gradlew --console=plain testGplayDebugUnitTest connectedGplayDebugAndroidTest
|
2021-12-07 16:06:17 +03:00
|
|
|
|
2021-12-21 12:47:54 +03:00
|
|
|
services:
|
|
|
|
- name: server
|
|
|
|
image: nextcloudci/server:server-17
|
|
|
|
environment:
|
|
|
|
EVAL: "true"
|
|
|
|
commands:
|
|
|
|
- BRANCH='stable23' /usr/local/bin/initnc.sh
|
|
|
|
- echo 127.0.0.1 server >> /etc/hosts
|
|
|
|
- su www-data -c "OC_PASS=user1 php /var/www/html/occ user:add --password-from-env --display-name='User One' user1"
|
|
|
|
- su www-data -c "OC_PASS=user2 php /var/www/html/occ user:add --password-from-env --display-name='User Two' user2"
|
|
|
|
- su www-data -c "OC_PASS=user3 php /var/www/html/occ user:add --password-from-env --display-name='User Three' user3"
|
|
|
|
- su www-data -c "php /var/www/html/occ user:setting user2 files quota 1G"
|
|
|
|
- su www-data -c "php /var/www/html/occ group:add users"
|
|
|
|
- su www-data -c "php /var/www/html/occ group:adduser users user1"
|
|
|
|
- su www-data -c "php /var/www/html/occ group:adduser users user2"
|
|
|
|
- su www-data -c "git clone -b stable23 https://github.com/nextcloud/spreed.git /var/www/html/apps/spreed/"
|
|
|
|
- su www-data -c "php /var/www/html/occ app:enable spreed"
|
|
|
|
- /usr/local/bin/run.sh
|
2021-12-07 16:06:17 +03:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2022-06-24 15:19:46 +03:00
|
|
|
- stable-*
|
2021-12-07 16:06:17 +03:00
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2023-07-13 11:55:50 +03:00
|
|
|
---
|
|
|
|
kind: signature
|
2024-03-17 16:12:32 +03:00
|
|
|
hmac: cdce3f7eea46ef85c0223f62f66d1fe53d7dad007ef095c9f70fa063450d8c75
|