diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-09-29 16:24:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 16:24:51 +0100 |
commit | 5fd59769063fafbe221c63ae7987f76d1eb8921a (patch) | |
tree | fe1858a4bc50c6db21da9b02a2569a726abc9b3c | |
parent | e3b7040cff0ab396c34b4d5d709115ebcded34cc (diff) | |
parent | fdcddd0f50640c47367198cfe7b4a509e843f361 (diff) | |
download | rspamd-5fd59769063fafbe221c63ae7987f76d1eb8921a.tar.gz rspamd-5fd59769063fafbe221c63ae7987f76d1eb8921a.zip |
Merge pull request #4620 from fatalbanana/testlog
[Minor] Try fix test logs
-rw-r--r-- | .drone.jsonnet | 2 | ||||
-rw-r--r-- | .drone.yml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet index 383ccdc01..a1fae89d1 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -194,7 +194,7 @@ local pipeline(arch) = { 'set +e', 'RSPAMD_INSTALLROOT=/rspamd/install robot --removekeywords wuks --exclude isbroken $DRONE_WORKSPACE/test/functional/cases; EXIT_CODE=$?', 'set -e', - 'if [ -n "$HTTP_PUT_AUTH" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/$DRONE_BUILD_NUMBER/; fi\n', + 'if [ -n "$HTTP_PUT_AUTH" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/${DRONE_BUILD_NUMBER}-' + arch + '/; fi\n', "core_files=$(find /var/tmp/ -name '*.core')", "for core in $core_files; do exe=$(gdb --batch -ex 'info proc mappings' -c $core | tail -1 | awk '{print $5}'); gdb --batch -ex 'bt' -c $core $exe; echo '---'; done\n", 'exit $EXIT_CODE', diff --git a/.drone.yml b/.drone.yml index f97e10fd7..365388f5e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -140,7 +140,7 @@ "set +e", "RSPAMD_INSTALLROOT=/rspamd/install robot --removekeywords wuks --exclude isbroken $DRONE_WORKSPACE/test/functional/cases; EXIT_CODE=$?", "set -e", - "if [ -n \"$HTTP_PUT_AUTH\" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/$DRONE_BUILD_NUMBER/; fi\n", + "if [ -n \"$HTTP_PUT_AUTH\" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/${DRONE_BUILD_NUMBER}-amd64/; fi\n", "core_files=$(find /var/tmp/ -name '*.core')", "for core in $core_files; do exe=$(gdb --batch -ex 'info proc mappings' -c $core | tail -1 | awk '{print $5}'); gdb --batch -ex 'bt' -c $core $exe; echo '---'; done\n", "exit $EXIT_CODE" @@ -357,7 +357,7 @@ "set +e", "RSPAMD_INSTALLROOT=/rspamd/install robot --removekeywords wuks --exclude isbroken $DRONE_WORKSPACE/test/functional/cases; EXIT_CODE=$?", "set -e", - "if [ -n \"$HTTP_PUT_AUTH\" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/$DRONE_BUILD_NUMBER/; fi\n", + "if [ -n \"$HTTP_PUT_AUTH\" ]; then $DRONE_WORKSPACE/test/tools/http_put.py log.html report.html https://$DRONE_SYSTEM_HOSTNAME/testlogs/$DRONE_REPO/${DRONE_BUILD_NUMBER}-arm64/; fi\n", "core_files=$(find /var/tmp/ -name '*.core')", "for core in $core_files; do exe=$(gdb --batch -ex 'info proc mappings' -c $core | tail -1 | awk '{print $5}'); gdb --batch -ex 'bt' -c $core $exe; echo '---'; done\n", "exit $EXIT_CODE" @@ -544,7 +544,7 @@ } --- { - "hmac": "5ad01ebb42030e1fa7f8a1ed3a9b14eb6d535b6d62f66a644fe9d614bdc26a2d", + "hmac": "e6516adb52533ad1bfedc9ebca429c73cda213b08314d62195f713bb3588b22f", "kind": "signature" } ... |