2019-04-12 12:14:05 +03:00
|
|
|
kind: pipeline
|
2021-08-13 12:33:50 +03:00
|
|
|
name: qt-5.15
|
2019-04-12 12:14:05 +03:00
|
|
|
|
|
|
|
steps:
|
2020-08-06 11:47:09 +03:00
|
|
|
- name: cmake
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 01:20:59 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
2019-04-12 12:14:05 +03:00
|
|
|
commands:
|
2020-08-06 11:43:37 +03:00
|
|
|
- cd /drone/build
|
2022-01-07 13:58:05 +03:00
|
|
|
- cmake -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Debug -DQUICK_COMPILER=ON -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DECM_ENABLE_SANITIZERS=address -DCMAKE_CXX_FLAGS=-Werror ../src
|
2020-08-06 11:47:09 +03:00
|
|
|
- name: compile
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 11:47:09 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
|
|
|
commands:
|
|
|
|
- cd /drone/build
|
2020-08-06 11:43:37 +03:00
|
|
|
- make -j$(nproc)
|
2020-08-06 10:25:46 +03:00
|
|
|
- name: test
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 10:25:46 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
|
|
|
commands:
|
2020-08-06 11:43:37 +03:00
|
|
|
- cd /drone/build
|
|
|
|
- useradd -m -s /bin/bash test
|
|
|
|
- chown -R test:test .
|
2021-09-06 16:12:35 +03:00
|
|
|
- su -c 'ASAN_OPTIONS=detect_leaks=0 xvfb-run ctest --output-on-failure' test
|
2020-08-06 01:20:59 +03:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
temp: {}
|
|
|
|
|
2019-04-12 12:14:05 +03:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2020-09-15 14:44:12 +03:00
|
|
|
- stable-*
|
2019-04-12 12:14:05 +03:00
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-08-13 12:33:50 +03:00
|
|
|
name: qt-5.15-clang
|
2019-04-12 12:14:05 +03:00
|
|
|
|
|
|
|
steps:
|
2020-08-06 11:47:09 +03:00
|
|
|
- name: cmake
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 01:20:59 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
2019-04-12 12:14:05 +03:00
|
|
|
commands:
|
2020-08-06 11:43:37 +03:00
|
|
|
- cd /drone/build
|
2022-01-07 13:58:05 +03:00
|
|
|
- cmake -GNinja -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_C_COMPILER=clang-10 -DCMAKE_CXX_COMPILER=clang++-10 -DCMAKE_BUILD_TYPE=Debug -DQUICK_COMPILER=ON -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DECM_ENABLE_SANITIZERS=address -DCMAKE_CXX_FLAGS=-Werror ../src
|
2020-08-06 11:47:09 +03:00
|
|
|
- name: compile
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 11:47:09 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
|
|
|
commands:
|
|
|
|
- cd /drone/build
|
2021-09-10 17:03:44 +03:00
|
|
|
- ninja
|
2020-08-06 10:25:46 +03:00
|
|
|
- name: test
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 10:25:46 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
|
|
|
commands:
|
2020-08-06 11:43:37 +03:00
|
|
|
- cd /drone/build
|
|
|
|
- useradd -m -s /bin/bash test
|
|
|
|
- chown -R test:test .
|
2021-09-06 16:12:35 +03:00
|
|
|
- su -c 'ASAN_OPTIONS=detect_leaks=0 xvfb-run ctest --output-on-failure' test
|
2020-08-06 10:25:46 +03:00
|
|
|
- name: clang-tidy
|
2021-10-18 13:09:22 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client:client-5.15-4
|
2020-08-06 10:25:46 +03:00
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
path: /drone/build
|
|
|
|
commands:
|
2020-08-06 14:25:05 +03:00
|
|
|
- "! run-clang-tidy-10 -j$(nproc) -p /drone/build -header-filter $PWD -quiet | grep -A 5 ': error:'"
|
2020-08-06 01:20:59 +03:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: build
|
|
|
|
temp: {}
|
|
|
|
|
2019-04-12 12:14:05 +03:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2020-09-15 14:44:12 +03:00
|
|
|
- stable-*
|
2019-04-12 12:14:05 +03:00
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: AppImage
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2021-10-16 00:14:20 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client-appimage:client-appimage-3
|
2020-07-19 08:51:24 +03:00
|
|
|
environment:
|
|
|
|
CI_UPLOAD_GIT_TOKEN:
|
|
|
|
from_secret: CI_UPLOAD_GIT_TOKEN
|
|
|
|
CI_UPLOAD_GIT_USERNAME:
|
|
|
|
from_secret: CI_UPLOAD_GIT_USERNAME
|
2019-04-12 12:14:05 +03:00
|
|
|
commands:
|
2021-08-17 10:13:48 +03:00
|
|
|
- BUILDNR=$DRONE_BUILD_NUMBER VERSION_SUFFIX=$DRONE_PULL_REQUEST BUILD_UPDATER=ON DESKTOP_CLIENT_ROOT=$DRONE_WORKSPACE /bin/bash -c "./admin/linux/build-appimage.sh"
|
2020-07-19 08:51:24 +03:00
|
|
|
- /bin/bash -c "./admin/linux/upload-appimage.sh" || echo "Upload failed, however this is an optional step."
|
2019-04-12 12:14:05 +03:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
2020-09-15 14:44:12 +03:00
|
|
|
- stable-*
|
2019-04-12 12:14:05 +03:00
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
2019-04-27 11:46:58 +03:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Debian
|
2019-04-12 12:14:05 +03:00
|
|
|
|
2019-04-27 11:46:58 +03:00
|
|
|
steps:
|
|
|
|
- name: build
|
2021-06-02 18:14:37 +03:00
|
|
|
image: ghcr.io/nextcloud/continuous-integration-client-debian:client-debian-3
|
2019-04-27 11:46:58 +03:00
|
|
|
commands:
|
2020-11-18 18:05:19 +03:00
|
|
|
- /bin/bash -c "./admin/linux/debian/drone-build.sh" || echo "[WARNING] Debian build failed but this is a non-blocking CI event"
|
2019-04-27 11:46:58 +03:00
|
|
|
environment:
|
|
|
|
DEBIAN_SECRET_KEY:
|
|
|
|
from_secret: DEBIAN_SECRET_KEY
|
|
|
|
DEBIAN_SECRET_IV:
|
|
|
|
from_secret: DEBIAN_SECRET_IV
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
- push
|
2019-04-12 12:14:05 +03:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Documentation
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: nextcloudci/documentation:documentation-5
|
|
|
|
commands:
|
|
|
|
- cd doc
|
|
|
|
- make html
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- pull_request
|
2021-09-10 17:03:44 +03:00
|
|
|
- push
|