summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-23 11:57:37 -0400
committerAnton Yuzhaninov <citrin+git@citrin.ru>2018-10-23 11:57:37 -0400
commit00e1cb15abbe6bf7eed8e3e00d598cfd089f8da0 (patch)
tree385b0e5187393b3a7cd25aaa04d37224648df8eb /.drone.yml
parent6ebb43d9bd5516a7c2ed71bbc312615453e5321e (diff)
downloadrspamd-00e1cb15abbe6bf7eed8e3e00d598cfd089f8da0.tar.gz
rspamd-00e1cb15abbe6bf7eed8e3e00d598cfd089f8da0.zip
Remove indentation from yaml '>' blocks
With indentation block literal is not folded as expected.
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml
index 787baa6d8..6215a9332 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -74,8 +74,8 @@ pipeline:
# if rspamd-test was terminated by a signal it should be SIGSEGV or SIGABRT, try to examine core
- >
if [ $EXIT_CODE -gt 128 ]; then
- gdb -c /var/tmp/*.rspamd-test.core ./rspamd-test -ex "set pagination 0" -ex "thread apply all bt full" --batch;
- exit $EXIT_CODE;
+ gdb -c /var/tmp/*.rspamd-test.core ./rspamd-test -ex "set pagination 0" -ex "thread apply all bt full" --batch;
+ exit $EXIT_CODE;
fi
# luacov-coveralls reads luacov.stats.out written by rspamd-test using luacov module
# and writes json report for coveralls.io service
@@ -99,7 +99,7 @@ pipeline:
# upload test results to nginx frontent using WebDAV PUT
- >
if [ -n "$HTTP_PUT_AUTH" ]; then
- $CI_WORKSPACE/test/tools/http_put.py log.html report.html $CI_SYSTEM_LINK/testlogs/$CI_REPO_NAME/$CI_BUILD_NUMBER/;
+ $CI_WORKSPACE/test/tools/http_put.py log.html report.html $CI_SYSTEM_LINK/testlogs/$CI_REPO_NAME/$CI_BUILD_NUMBER/;
fi
- find /var/tmp/ -name '*.core'
- exit $EXIT_CODE