summaryrefslogtreecommitdiffstats
path: root/extras/hs-test/script/compress.sh
blob: 92a2fbd6789750122adb08042acfe09e1fabdce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash

if [ "${COMPRESS_FAILED_TEST_LOGS}" == "yes" -a -s "${HS_SUMMARY}/failed-summary.log" ]
then
    echo -n "Copying docker logs..."
    dirs=$(jq -r '.[0] | .SpecReports[] | select(.State == "failed") | .LeafNodeText' ${HS_SUMMARY}/report.json)
    for dirName in $dirs; do
        logDir=/tmp/hs-test/$dirName
        if [ -d "$logDir" ]; then
            mkdir -p $WORKSPACE/archives/summary
            cp -r $logDir $WORKSPACE/archives/summary/
        fi
    done
    echo "Done."

    if [ -n "$WORKSPACE" ]
    then
        echo -n "Copying failed test logs into build log archive directory ($WORKSPACE/archives)... "
        mkdir -p $WORKSPACE/archives/summary
        cp -a ${HS_SUMMARY}/* $WORKSPACE/archives/summary
    echo "Done."
    fi

    echo -n "Compressing files in $WORKSPACE/archives from test runs... "
    cd $WORKSPACE/archives
    find . -type f \( -name "*.json" -o -name "*.log" \) -exec gzip {} \;
    echo "Done."

else
    echo "Not compressing files in temporary directories from test runs."
    exit 0
fi

exit 1