Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-08-06 10:25:46 +0300
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>2020-08-12 09:45:12 +0300
commit6da67ef653dd473f02067deeced122261d522172 (patch)
tree07e4ba261ae0cac6b3e91c1bef77ec57976812cc /.drone.yml
parent65407483e58313319f65196986e9912d84f169f2 (diff)
Split the CI pipelines into proper steps
Will make it easier to navigate the logs Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml33
1 files changed, 26 insertions, 7 deletions
diff --git a/.drone.yml b/.drone.yml
index dd56a7436..6bc04b412 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -2,19 +2,26 @@ kind: pipeline
name: qt-5.12
steps:
-- name: build and test
+- name: build
image: nextcloudci/client-5.12:client-5.12-10
volumes:
- name: build
path: /drone/build
commands:
- # Build client
- /bin/bash -c "
export CC=gcc-10 &&
export CXX=g++-10 &&
cd /drone/build &&
cmake -DNO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../src &&
- make -j$(nproc) &&
+ make -j$(nproc)"
+- name: test
+ image: nextcloudci/client-5.12:client-5.12-10
+ volumes:
+ - name: build
+ path: /drone/build
+ commands:
+ - /bin/bash -c "
+ cd /drone/build &&
useradd -m -s /bin/bash test &&
chown -R test:test . &&
su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
@@ -35,23 +42,35 @@ kind: pipeline
name: qt-5.12-clang
steps:
-- name: build and test
+- name: build
image: nextcloudci/client-5.12:client-5.12-10
volumes:
- name: build
path: /drone/build
commands:
- # Build client
- /bin/bash -c "
export CC=clang-10 &&
export CXX=clang++-10 &&
cd /drone/build &&
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DNO_SHIBBOLETH=1 -DBUILD_UPDATER=ON -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTING=1 -DSANITIZE_ADDRESS=ON ../src &&
- make -j$(nproc) &&
+ make -j$(nproc)"
+- name: test
+ image: nextcloudci/client-5.12:client-5.12-10
+ volumes:
+ - name: build
+ path: /drone/build
+ commands:
+ - /bin/bash -c "
+ cd /drone/build &&
useradd -m -s /bin/bash test &&
chown -R test:test . &&
su -c 'ASAN_OPTIONS=detect_leaks=0 ctest --output-on-failure' test"
- # Static analysis with clang-tidy
+- name: clang-tidy
+ image: nextcloudci/client-5.12:client-5.12-10
+ volumes:
+ - name: build
+ path: /drone/build
+ commands:
- "! run-clang-tidy-10 -p /drone/build -header-filter $PWD -quiet | grep -A 5 ': error:'"
volumes: