commit 9774d1a: Convert Drone pipeline to Drone 1.x syntax

Anton Yuzhaninov citrin+git at citrin.ru
Wed Oct 23 11:42:10 UTC 2019


Author: Anton Yuzhaninov
Date: 2019-10-23 11:40:17 +0100
URL: https://github.com/rspamd/rspamd/commit/9774d1a9feaadcf15af8f93cda0048dc824b35e0

Convert Drone pipeline to Drone 1.x syntax

---
 .drone.yml | 175 +++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 118 insertions(+), 57 deletions(-)

diff --git a/.drone.yml b/.drone.yml
index ba27e014d..83d9dd471 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1,36 +1,58 @@
 ---
-workspace:
-  base: /rspamd
+kind: pipeline
+type: docker
+name: default
 
-pipeline:
+platform:
+  os: linux
+  arch: amd64
 
-  prepare:
-    # ubuntu used as base image for build and test images
-    # and we need to download it anyway
+steps:
+  - name: prepare
+
+    # any image with a root shell can be used here, but Ubuntu used as base
+    # image for build and test images and we need to download it anyway
     image: ubuntu:18.04
+    pull: if-not-exists
+    volumes:
+      - name: rspamd
+        path: /rspamd
     commands:
       - install -d -o nobody -g nogroup /rspamd/build /rspamd/install /rspamd/fedora/build /rspamd/fedora/install
 
-  build:
+  - name: build
     # https://github.com/rspamd/rspamd-build-docker/blob/master/ubuntu-build/Dockerfile
     image: rspamd/ci-ubuntu-build
-    pull: true
-    group: build
+    pull: always
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ prepare ]
     commands:
       # build directories should be writable by nobody, for rspamd in functional tests
       # works as nobody and writes coverage files there
       - test "$(id -un)" = nobody
       - cd /rspamd/build
-      - cmake $CI_WORKSPACE -DENABLE_COVERAGE=ON -DENABLE_LIBUNWIND=ON -DCMAKE_INSTALL_PREFIX=/rspamd/install -DCMAKE_RULE_MESSAGES=OFF -DCMAKE_VERBOSE_MAKEFILE=ON
+      - >
+        cmake
+        -DCMAKE_INSTALL_PREFIX=/rspamd/install
+        -DCMAKE_RULE_MESSAGES=OFF
+        -DCMAKE_VERBOSE_MAKEFILE=ON
+        -DENABLE_COVERAGE=ON
+        -DENABLE_LIBUNWIND=ON
+        $CI_WORKSPACE
       - ncpu=$(getconf _NPROCESSORS_ONLN)
       - make -j $ncpu install
       - make -j $ncpu rspamd-test
 
-  build-clang:
+  - name: build-clang
     # https://github.com/rspamd/rspamd-build-docker/blob/master/fedora-build/Dockerfile
     image: rspamd/ci-fedora-build
-    pull: true
-    group: build
+    pull: always
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ prepare ]
     commands:
       - test "$(id -un)" = nobody
       - cd /rspamd/fedora/build
@@ -39,41 +61,18 @@ pipeline:
       - export ASAN_OPTIONS=detect_leaks=0
       - >
         cmake
-        -DENABLE_CLANG_PLUGIN=ON
-        -DLLVM_CONFIG_BINARY=/usr/bin/llvm-config
-        -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++
         -DCMAKE_INSTALL_PREFIX=/rspamd/fedora/install
-        -DENABLE_FULL_DEBUG=ON
+        -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++
         -DCMAKE_RULE_MESSAGES=OFF
         -DCMAKE_VERBOSE_MAKEFILE=ON
+        -DENABLE_CLANG_PLUGIN=ON
+        -DLLVM_CONFIG_BINARY=/usr/bin/llvm-config
+        -DENABLE_FULL_DEBUG=ON
         $CI_WORKSPACE
       - ncpu=$(getconf _NPROCESSORS_ONLN)
       - make -j $ncpu install
       - make -j $ncpu rspamd-test
 
-  eslint:
-    image: node:10-alpine
-    group: tests
-    commands:
-      - npm install
-      - ./node_modules/.bin/eslint -v
-      - ./node_modules/.bin/eslint ./
-      # Run stylelint checks
-      - ./node_modules/.bin/stylelint -v
-      - npm show stylelint-config-standard version
-      - ./node_modules/.bin/stylelint ./**/*.css ./**/*.html ./**/*.js
-
-  # Run checks on perl source using tidyall
-  perl-tidyall:
-    # https://github.com/rspamd/rspamd-build-docker/blob/master/perl-tidyall/Dockerfile
-    image: rspamd/ci-perl-tidyall
-    group: tests
-    commands:
-      - tidyall --version
-      - perltidy --version | head -1
-      # checks are configured in .tidyallrc at the top of rspamd repo
-      - tidyall --all --check-only --no-cache --data-dir /tmp/tidyall
-
   # We run rspamd-test (unit test) and functional test (runned by robot) in
   # parallel to save time. To avoid conflict in saving lua coverage we run them
   # from different directories. For C code coverage counters is saved to .gcda
@@ -84,11 +83,14 @@ pipeline:
   # will try to write .gcda file simultaneous.  But it is very unlikely and
   # performance is more important then correct coverage data.
 
-  rspamd-test:
+  - name: rspamd-test
     # https://github.com/rspamd/rspamd-build-docker/blob/master/ubuntu-test/Dockerfile
     image: rspamd/ci-ubuntu-test
-    pull: true
-    group: tests
+    pull: always
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ build ]
     commands:
       - test "$(id -un)" = nobody
       - ulimit -c unlimited
@@ -111,11 +113,14 @@ pipeline:
       - luacov-coveralls -o /rspamd/build/unit_test_lua.json --dryrun
       - exit $EXIT_CODE
 
-  test-fedora-clang:
+  - name: test-fedora-clang
     # https://github.com/rspamd/rspamd-build-docker/blob/master/fedora-test/Dockerfile
     image: rspamd/ci-fedora-test
-    pull: true
-    group: tests
+    pull: always
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ build-clang ]
     commands:
       - test "$(id -un)" = nobody
       # Asan reserves 20Tb of virtual memory, limit core size to 2 Gb to avoid writing huge core
@@ -137,11 +142,14 @@ pipeline:
       - cat /tmp/ubsan.*
       - exit $EXIT_CODE
 
-  functional:
+  - name: functional
     # https://github.com/rspamd/rspamd-build-docker/blob/master/ubuntu-test-func/Dockerfile
     image: rspamd/ci-ubuntu-test-func
-    pull: true
-    group: tests
+    pull: always
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ build ]
     commands:
       - cd /rspamd/build
       - ulimit -c unlimited
@@ -168,11 +176,16 @@ pipeline:
         gdb --batch -ex 'bt' -c $core $exe; echo '---';
         done
       - exit $EXIT_CODE
-    secrets: [http_put_auth]
+    environment:
+      HTTP_PUT_AUTH: { from_secret: http_put_auth }
 
-  send-coverage:
+  - name: send-coverage
     image: rspamd/ci-ubuntu-test
-    secrets: [ coveralls_repo_token ]
+    pull: if-not-exists
+    volumes:
+      - name: rspamd
+        path: /rspamd
+    depends_on: [ functional, rspamd-test ]
     commands:
       - cd /rspamd/build
       # extract coverage data for C code from .gcda files and save it in a format suitable for coveralls.io
@@ -185,14 +198,62 @@ pipeline:
       # * remove prefixes from absolute paths (in luacov-coveralls files), filter test, contrib, e. t.c
       # * upload report to coveralls.io
       - $CI_WORKSPACE/test/tools/merge_coveralls.py --root $CI_WORKSPACE --input coverage.c.json unit_test_lua.json coverage.functional.lua.json --token=$COVERALLS_REPO_TOKEN
+    environment:
+      COVERALLS_REPO_TOKEN: { from_secret: coveralls_repo_token }
     when:
-      branch: master
+      branch: [ master ]
       # don't send coverage report for pull request
       event: [push, tag]
 
-  notify:
+  - name: eslint
+    image: node:10-alpine
+    pull: if-not-exists
+    commands:
+      - npm install
+      - ./node_modules/.bin/eslint -v
+      - ./node_modules/.bin/eslint ./
+      # Run stylelint checks
+      - ./node_modules/.bin/stylelint -v
+      - npm show stylelint-config-standard version
+      - ./node_modules/.bin/stylelint ./**/*.css ./**/*.html ./**/*.js
+
+  - name: perl-tidyall
+    # https://github.com/rspamd/rspamd-build-docker/blob/master/perl-tidyall/Dockerfile
+    image: rspamd/ci-perl-tidyall
+    pull: if-not-exists
+    commands:
+      - tidyall --version
+      - perltidy --version | head -1
+      # checks are configured in .tidyallrc at the top of rspamd repo
+      - tidyall --all --check-only --no-cache --data-dir /tmp/tidyall
+
+  - name: notify
     image: drillster/drone-email
-    from: noreply at rspamd.com
-    secrets: [email_host, email_username, email_password]
+    pull: if-not-exists
+    depends_on:
+      - rspamd-test
+      - test-fedora-clang
+      - functional
+      - send-coverage
+      - eslint
+      - perl-tidyall
+    settings:
+      from: noreply at rspamd.com
+      host: { from_secret: email_host }
+      username: { from_secret: email_username }
+      password: { from_secret: email_password }
     when:
-      status: failure
+      status: [ failure ]
+
+volumes:
+  - name: rspamd
+    temp: {}
+
+trigger:
+  event: [push, tag, pull_request]
+
+---
+kind: signature
+hmac: 6f4c623111114a6ff0d5f9a63b9616f113051e159c8ba1c312f137768992ecc3
+
+...


More information about the Commits mailing list