From 00e1cb15abbe6bf7eed8e3e00d598cfd089f8da0 Mon Sep 17 00:00:00 2001 From: Anton Yuzhaninov Date: Tue, 23 Oct 2018 11:57:37 -0400 Subject: [PATCH] Remove indentation from yaml '>' blocks With indentation block literal is not folded as expected. --- .drone.yml | 6 +++--- 1 file 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 -- 2.39.5